mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
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:
parent
a906513d32
commit
e0a423dd29
1 changed files with 1 additions and 1 deletions
|
@ -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");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue