mirror of
https://github.com/neovim/neovim.git
synced 2025-10-26 12:27:24 +00:00
test: correct order of arguments to eq() (#27816)
This commit is contained in:
@@ -166,7 +166,7 @@ describe('thread', function()
|
||||
]]
|
||||
|
||||
local msg = next_msg()
|
||||
eq(msg[1], 'notification')
|
||||
eq('notification', msg[1])
|
||||
assert(tonumber(msg[2]) >= 72961)
|
||||
end)
|
||||
|
||||
@@ -327,7 +327,7 @@ describe('threadpool', function()
|
||||
]]
|
||||
|
||||
local msg = next_msg()
|
||||
eq(msg[1], 'notification')
|
||||
eq('notification', msg[1])
|
||||
assert(tonumber(msg[2]) >= 72961)
|
||||
end)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user