diff options
author | daurnimator <quae@daurnimator.com> | 2018-04-14 15:03:54 +1000 |
---|---|---|
committer | daurnimator <quae@daurnimator.com> | 2018-04-15 18:40:20 +1000 |
commit | e9986b9189e2358f9c1a005412a792b7795643d2 (patch) | |
tree | ea6b8798705d4882b3de0ab52ace9c7f271d4a8b /test/test-suite/vararg.test.js | |
parent | 65d022bf3d7330a3d8dc69c08e07a81f25b8ba4b (diff) | |
download | fengari-e9986b9189e2358f9c1a005412a792b7795643d2.tar.gz fengari-e9986b9189e2358f9c1a005412a792b7795643d2.tar.bz2 fengari-e9986b9189e2358f9c1a005412a792b7795643d2.zip |
test/test-suite: Remove print calls
Diffstat (limited to 'test/test-suite/vararg.test.js')
-rw-r--r-- | test/test-suite/vararg.test.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test-suite/vararg.test.js b/test/test-suite/vararg.test.js index 78439f1..0538541 100644 --- a/test/test-suite/vararg.test.js +++ b/test/test-suite/vararg.test.js @@ -45,7 +45,7 @@ test("[test-suite] vararg: testing vararg", () => { assert(a[1] == b and a[2] == c and a.n == 2) a = vararg(call(call, {c12, {1,2}})) assert(a.n == 2 and a[1] == 55 and a[2] == 2) - a = call(print, {'+'}) + a = call(function()end, {'+'}) assert(a == nil) local t = {1, 10} |