mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
unittests: Fix testlint failure
This commit is contained in:
parent
c1416e0665
commit
654dd15bb8
@ -1091,9 +1091,9 @@ describe('typval.c', function()
|
||||
end)
|
||||
end)
|
||||
describe('join()', function()
|
||||
local function list_join(l, sep, ret)
|
||||
local function list_join(l, sep, join_ret)
|
||||
local ga = ga_alloc()
|
||||
eq(ret or OK, lib.tv_list_join(ga, l, sep))
|
||||
eq(join_ret or OK, lib.tv_list_join(ga, l, sep))
|
||||
local ret = ''
|
||||
if ga.ga_data ~= nil then
|
||||
ret = ffi.string(ga.ga_data)
|
||||
|
Loading…
Reference in New Issue
Block a user