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/lvm.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'tests/lvm.js') diff --git a/tests/lvm.js b/tests/lvm.js index 209329e..08c0c5e 100644 --- a/tests/lvm.js +++ b/tests/lvm.js @@ -3,6 +3,7 @@ const test = require('tape'); const lua = require("../src/lua.js"); +const lstring = require("../src/lstring.js"); const getState = require("./tests.js").getState; @@ -458,7 +459,7 @@ test('SETTABLE, GETTABLE', function (t) { ); t.deepEqual( - L.stack[L.top - 1].value.strong.get('116|119|111|').value.jsstring(), // "two" + L.stack[L.top - 1].value.strong.get(lstring.luaS_hash(lua.to_luastring("two"))).value.jsstring(), // "two" "world", "Program output is correct" ); @@ -517,7 +518,7 @@ test('SETTABUP, GETTABUP', function (t) { ); t.deepEqual( - L.stack[L.top - 1].value.strong.get('116|119|111|').value.jsstring(), // "two" + L.stack[L.top - 1].value.strong.get(lstring.luaS_hash(lua.to_luastring("two"))).value.jsstring(), // "two" "world", // "world" "Program output is correct" ); -- cgit v1.2.3-54-g00ecf