diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2021-11-25 10:11:05 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2021-11-25 10:11:05 -0300 |
commit | 48835c76c8df62fab4827a9835b351718d20df4b (patch) | |
tree | 499d4adb856f159107f668d22ba0c196718de4e8 /testes | |
parent | 6b3e116d44eed387aa93126c48eae8a64b38bfc2 (diff) | |
download | lua-48835c76c8df62fab4827a9835b351718d20df4b.tar.gz lua-48835c76c8df62fab4827a9835b351718d20df4b.tar.bz2 lua-48835c76c8df62fab4827a9835b351718d20df4b.zip |
Wrong assert in 'collectvalidlines'
Diffstat (limited to '')
-rw-r--r-- | testes/db.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testes/db.lua b/testes/db.lua index 11dfd26c..e0699724 100644 --- a/testes/db.lua +++ b/testes/db.lua | |||
@@ -225,7 +225,7 @@ do -- testing active lines | |||
225 | -- 5th line is empty | 225 | -- 5th line is empty |
226 | end, {3, 4, 6}) | 226 | end, {3, 4, 6}) |
227 | 227 | ||
228 | checkactivelines(function (...) end, {0}) | 228 | checkactivelines(function (a, b, ...) end, {0}) |
229 | 229 | ||
230 | checkactivelines(function (a, b) | 230 | checkactivelines(function (a, b) |
231 | end, {1}) | 231 | end, {1}) |