diff options
author | Benoit Giannangeli <giann@users.noreply.github.com> | 2017-05-22 20:06:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-22 20:06:57 +0200 |
commit | e3bdd1fea3665df28de25ed76f6399faf957179d (patch) | |
tree | 6884757b43064fa7163b54b86aa4561d185b5ca2 /tests/test-suite/math.js | |
parent | 25e2110a5eac0a2e6c7b4d502ffbd53fc61af301 (diff) | |
parent | 8a439e5563f12335e3d35dd63b4f8cbcc25a9bd8 (diff) | |
download | fengari-e3bdd1fea3665df28de25ed76f6399faf957179d.tar.gz fengari-e3bdd1fea3665df28de25ed76f6399faf957179d.tar.bz2 fengari-e3bdd1fea3665df28de25ed76f6399faf957179d.zip |
Merge pull request #63 from daurnimator/fix-skipped-tests
Investigated + fixed some skipped tests
Diffstat (limited to 'tests/test-suite/math.js')
-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) |