mirror of
https://github.com/neovim/neovim.git
synced 2025-12-16 03:15:39 +00:00
test: correct order of arguments to eq() and neq()
This commit is contained in:
@@ -63,9 +63,9 @@ describe('API', function()
|
||||
local pid = funcs.getpid()
|
||||
local pinfo = request('nvim_get_proc', pid)
|
||||
eq((iswin() and 'nvim.exe' or 'nvim'), pinfo.name)
|
||||
eq(pinfo.pid, pid)
|
||||
eq(type(pinfo.ppid), 'number')
|
||||
neq(pinfo.ppid, pid)
|
||||
eq(pid, pinfo.pid)
|
||||
eq('number', type(pinfo.ppid))
|
||||
neq(pid, pinfo.ppid)
|
||||
end)
|
||||
|
||||
it('validates input', function()
|
||||
|
||||
Reference in New Issue
Block a user