mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
util.human.io: Include relevant arguments in test messages
This way the relevant arguments are shown in case a test case fails
This commit is contained in:
parent
e0a423dd29
commit
9f96301ce8
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ describe("util.human.io", function ()
|
||||||
|
|
||||||
describe("parse_duration", function ()
|
describe("parse_duration", function ()
|
||||||
local function test(expected, duration)
|
local function test(expected, duration)
|
||||||
return assert.equal(expected, human_io.parse_duration(duration));
|
return assert.equal(expected, human_io.parse_duration(duration), ("%q -> %d"):format(duration, expected));
|
||||||
end
|
end
|
||||||
it("works", function ()
|
it("works", function ()
|
||||||
test(1, "1s");
|
test(1, "1s");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue