util.human.io: Use tail call in test to get correct line numbers

This is probably not guaranteed to work and might vary with Lua version,
but it's good enough for me to get accurate line numbers out of Busted
that don't all point to the test() function.
This commit is contained in:
Kim Alvefur 2023-07-16 18:42:58 +02:00
parent a906513d32
commit e0a423dd29

View file

@ -45,7 +45,7 @@ describe("util.human.io", function ()
describe("parse_duration", function ()
local function test(expected, duration)
assert.equal(expected, human_io.parse_duration(duration));
return assert.equal(expected, human_io.parse_duration(duration));
end
it("works", function ()
test(1, "1s");