Fix assertdump stack level

This commit is contained in:
Lars Mueller 2021-03-25 11:47:34 +01:00
parent b87395272b
commit 11e8bc6f4c

@ -46,7 +46,7 @@ modlib = {
}), }),
assertdump = function(v, value) assertdump = function(v, value)
if not v then if not v then
error(dump(value)) error(dump(value), 2)
end end
end end
} }