test: correct order of arguments to eq() (#27816)

This commit is contained in:
zeertzjq
2024-03-11 22:23:14 +08:00
committed by GitHub
parent 0f20b7d803
commit 1da0f3494e
22 changed files with 85 additions and 85 deletions

View File

@@ -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)