From 2b3a4790759168c4f17129f719f96f63a2c6765b Mon Sep 17 00:00:00 2001 From: Benoit Giannangeli Date: Tue, 9 May 2017 15:19:26 +0200 Subject: lvm.tonumber should return the integer value --- tests/test-suite/events.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'tests/test-suite/events.js') diff --git a/tests/test-suite/events.js b/tests/test-suite/events.js index 64e8056..40dc30d 100644 --- a/tests/test-suite/events.js +++ b/tests/test-suite/events.js @@ -2,6 +2,8 @@ const test = require('tape'); +global.WEB = false; + const lauxlib = require("../../src/lauxlib.js"); const lua = require('../../src/lua.js'); @@ -59,7 +61,7 @@ test("[test-suite] events: testing metatable", function (t) { setmetatable(t, t) -- causes a bug in 5.1 ! t.__newindex = f a[1] = 30; a.x = "101"; a[5] = 200 - -- assert(a[1] == 27 and a.x == 98 and a[5] == 197) + assert(a[1] == 27 and a.x == 98 and a[5] == 197) `, L; t.plan(2); @@ -80,4 +82,4 @@ test("[test-suite] events: testing metatable", function (t) { }, "Lua program ran without error"); -}); \ No newline at end of file +}); -- cgit v1.2.3-54-g00ecf