From 66294fd31720f5073fb7cc1540f67e76cb638859 Mon Sep 17 00:00:00 2001 From: daurnimator Date: Wed, 13 Dec 2017 12:39:42 +1100 Subject: tests/: Don't hard-code string hashes --- tests/lexparse.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'tests/lexparse.js') diff --git a/tests/lexparse.js b/tests/lexparse.js index e7ba0c5..ca57605 100644 --- a/tests/lexparse.js +++ b/tests/lexparse.js @@ -6,6 +6,7 @@ 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"); // Roughly the same tests as test/lvm.js to cover all opcodes @@ -743,7 +744,7 @@ test('SETTABLE, GETTABLE', function (t) { ); t.strictEqual( - lua.lua_topointer(L, -1).strong.get('116|119|111|').value.jsstring(), + lua.lua_topointer(L, -1).strong.get(lstring.luaS_hash(lua.to_luastring("two"))).value.jsstring(), "world", "Program output is correct" ); @@ -836,7 +837,7 @@ test('SETTABUP, GETTABUP', function (t) { ); t.strictEqual( - lua.lua_topointer(L, -1).strong.get('116|119|111|').value.jsstring(), + lua.lua_topointer(L, -1).strong.get(lstring.luaS_hash(lua.to_luastring("two"))).value.jsstring(), "world", "Program output is correct" ); -- cgit v1.2.3-54-g00ecf