diff options
author | daurnimator <quae@daurnimator.com> | 2017-12-13 12:39:42 +1100 |
---|---|---|
committer | daurnimator <quae@daurnimator.com> | 2017-12-13 15:04:05 +1100 |
commit | 66294fd31720f5073fb7cc1540f67e76cb638859 (patch) | |
tree | 29d0507da00d790ee91fba527d61f83c653356ab /tests/lexparse.js | |
parent | c05459ce4663efca327eba53d60b1667c126058b (diff) | |
download | fengari-66294fd31720f5073fb7cc1540f67e76cb638859.tar.gz fengari-66294fd31720f5073fb7cc1540f67e76cb638859.tar.bz2 fengari-66294fd31720f5073fb7cc1540f67e76cb638859.zip |
tests/: Don't hard-code string hashes
Diffstat (limited to 'tests/lexparse.js')
-rw-r--r-- | tests/lexparse.js | 5 |
1 files changed, 3 insertions, 2 deletions
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" ); |