diff options
-rw-r--r-- | tests/test-suite/math.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test-suite/math.js b/tests/test-suite/math.js index e79281b..b92d304 100644 --- a/tests/test-suite/math.js +++ b/tests/test-suite/math.js @@ -746,7 +746,7 @@ test("[test-suite] math: 'tonumber' with strings", function (t) { }); -test("[test-suite] math: tests with very long numerals", { skip: true }, function (t) { +test("[test-suite] math: tests with very long numerals", function (t) { let luaCode = ` assert(tonumber("0x"..string.rep("f", 13)..".0") == 2.0^(4*13) - 1) assert(tonumber("0x"..string.rep("f", 150)..".0") == 2.0^(4*150) - 1) |