aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--spec/util_human_io_spec.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/util_human_io_spec.lua b/spec/util_human_io_spec.lua
index c143d028..358d9a19 100644
--- a/spec/util_human_io_spec.lua
+++ b/spec/util_human_io_spec.lua
@@ -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");