summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/lexparse.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/lexparse.js b/tests/lexparse.js
index 57aaa22..e9087ee 100644
--- a/tests/lexparse.js
+++ b/tests/lexparse.js
@@ -5,7 +5,6 @@ const test = require('tape');
const lua = require('../src/lua.js');
const lauxlib = require('../src/lauxlib.js');
const lualib = require('../src/lualib.js');
-const lapi = require('../src/lapi.js');
const lstring = require("../src/lstring.js");
const {to_luastring} = require("../src/fengaricore.js");
@@ -199,7 +198,7 @@ test('NEWTABLE', function (t) {
}, "Lua program ran without error");
t.ok(
- L.stack[lapi.index2addr_(L, -1)].ttistable(),
+ lua.lua_type(L, -1) === lua.LUA_TTABLE,
"Program output is correct"
);
});