Skip to content

Commit 4e799e7

Browse files
committed
fix(falsy/truthy) validate # of arguments
see lunarmodules/busted#674
1 parent 36fc3af commit 4e799e7

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/assertions.lua

+4
Original file line numberDiff line numberDiff line change
@@ -142,11 +142,15 @@ local function same(state, arguments, level)
142142
end
143143

144144
local function truthy(state, arguments, level)
145+
local argcnt = arguments.n
146+
assert(argcnt > 0, s("assertion.internal.argtolittle", { "truthy", 1, tostring(argcnt) }), level)
145147
set_failure_message(state, arguments[2])
146148
return arguments[1] ~= false and arguments[1] ~= nil
147149
end
148150

149151
local function falsy(state, arguments, level)
152+
local argcnt = arguments.n
153+
assert(argcnt > 0, s("assertion.internal.argtolittle", { "falsy", 1, tostring(argcnt) }), level)
150154
return not truthy(state, arguments, level)
151155
end
152156

0 commit comments

Comments
 (0)