diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lvm.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/lvm.js b/tests/lvm.js index df01167..1af0c48 100644 --- a/tests/lvm.js +++ b/tests/lvm.js @@ -554,14 +554,14 @@ test('SETUPVAL, GETUPVAL', function (t) { return f() `, vm; - t.plan(1); + t.plan(2); t.comment("Running following code: \n" + luaCode); - // t.doesNotThrow(function () { + t.doesNotThrow(function () { vm = getVM(luaCode); vm.execute(); - // }, "Program executed without errors"); + }, "Program executed without errors"); t.strictEqual( vm.L.stack[vm.L.top - 1].value, |