diff options
Diffstat (limited to 'tests')
| m--------- | tests/lua-tests | 0 | ||||
| -rw-r--r-- | tests/lua.js | 6 | 
2 files changed, 3 insertions, 3 deletions
| diff --git a/tests/lua-tests b/tests/lua-tests -Subproject 21fb72de668a3307958d6a6d71770ae2118ba1d +Subproject 9e0d0bfb5de8cb0534a13c19f23377db62b53d5 diff --git a/tests/lua.js b/tests/lua.js index c230dea..30a9c98 100644 --- a/tests/lua.js +++ b/tests/lua.js @@ -15,7 +15,7 @@ test('constructs.lua', function (t) {          return dofile("tests/lua-tests/constructs.lua")      `, L; -    t.plan(1); +    t.plan(2);      t.doesNotThrow(function () { @@ -27,11 +27,11 @@ test('constructs.lua', function (t) {      }, "Lua program loaded without error"); -    // t.doesNotThrow(function () { +    t.doesNotThrow(function () {          lapi.lua_call(L, 0, -1); -    // }, "Lua program ran without error"); +    }, "Lua program ran without error");  }); | 
