1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-06-27 16:36:03 +00:00

Add missing item alias metatables to async environment (#12458)

This commit is contained in:
sfan5 2022-07-04 01:06:42 +02:00 committed by GitHub
parent 34f15259fa
commit fc3460470a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 35 additions and 10 deletions

View file

@ -123,10 +123,10 @@ local function test_handle_async(cb)
core.handle_async(func, function(...)
if not deepequal(expect, {...}) then
cb("Values did not equal")
return cb("Values did not equal")
end
if core.get_last_run_mod() ~= expect[1] then
cb("Mod name not tracked correctly")
return cb("Mod name not tracked correctly")
end
-- Test passing of nil arguments and return values
@ -134,7 +134,7 @@ local function test_handle_async(cb)
return a, b
end, function(a, b)
if b ~= 123 then
cb("Argument went missing")
return cb("Argument went missing")
end
cb()
end, nil, 123)
@ -151,7 +151,7 @@ local function test_userdata_passing2(cb, _, pos)
return vm_:get_node_at(pos_)
end, function(ret)
if not deepequal(expect, ret) then
cb("Node data mismatch (one-way)")
return cb("Node data mismatch (one-way)")
end
-- VManip: test a roundtrip
@ -159,7 +159,7 @@ local function test_userdata_passing2(cb, _, pos)
return vm_
end, function(vm2)
if not deepequal(expect, vm2:get_node_at(pos)) then
cb("Node data mismatch (roundtrip)")
return cb("Node data mismatch (roundtrip)")
end
cb()
end, vm)