diff options
author | Benoit Giannangeli <giann008@gmail.com> | 2017-04-24 15:11:12 +0200 |
---|---|---|
committer | Benoit Giannangeli <giann008@gmail.com> | 2017-04-24 15:11:12 +0200 |
commit | 31dcd12f5a9cd6a45e8ad9d1213a8a25d88fe885 (patch) | |
tree | 18fae5b71f40278e64ac8733827d2bea7e58d588 /tests/lmathlib.js | |
parent | b9f9cde1c18ace3930be4cb7f6d9527178544d8b (diff) | |
download | fengari-31dcd12f5a9cd6a45e8ad9d1213a8a25d88fe885.tar.gz fengari-31dcd12f5a9cd6a45e8ad9d1213a8a25d88fe885.tar.bz2 fengari-31dcd12f5a9cd6a45e8ad9d1213a8a25d88fe885.zip |
Removed useless luac -l from tests
Diffstat (limited to 'tests/lmathlib.js')
-rw-r--r-- | tests/lmathlib.js | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/tests/lmathlib.js b/tests/lmathlib.js index 6105af4..339718c 100644 --- a/tests/lmathlib.js +++ b/tests/lmathlib.js @@ -27,7 +27,7 @@ test('math.abs, math.sin, math.cos, math.tan, math.asin, math.acos, math.atan', t.doesNotThrow(function () { - let bc = toByteCode(luaCode).dataView; + let bc = toByteCode(luaCode); L = lauxlib.luaL_newstate(); @@ -92,7 +92,7 @@ test('math.ceil, math.floor', function (t) { t.doesNotThrow(function () { - let bc = toByteCode(luaCode).dataView; + let bc = toByteCode(luaCode); L = lauxlib.luaL_newstate(); @@ -128,7 +128,7 @@ test('math.deg, math.rad', function (t) { t.doesNotThrow(function () { - let bc = toByteCode(luaCode).dataView; + let bc = toByteCode(luaCode); L = lauxlib.luaL_newstate(); @@ -164,7 +164,7 @@ test('math.log', function (t) { t.doesNotThrow(function () { - let bc = toByteCode(luaCode).dataView; + let bc = toByteCode(luaCode); L = lauxlib.luaL_newstate(); @@ -206,7 +206,7 @@ test('math.exp', function (t) { t.doesNotThrow(function () { - let bc = toByteCode(luaCode).dataView; + let bc = toByteCode(luaCode); L = lauxlib.luaL_newstate(); @@ -236,7 +236,7 @@ test('math.min, math.max', function (t) { t.doesNotThrow(function () { - let bc = toByteCode(luaCode).dataView; + let bc = toByteCode(luaCode); L = lauxlib.luaL_newstate(); @@ -272,7 +272,7 @@ test('math.random', function (t) { t.doesNotThrow(function () { - let bc = toByteCode(luaCode).dataView; + let bc = toByteCode(luaCode); L = lauxlib.luaL_newstate(); @@ -306,7 +306,7 @@ test('math.sqrt', function (t) { t.doesNotThrow(function () { - let bc = toByteCode(luaCode).dataView; + let bc = toByteCode(luaCode); L = lauxlib.luaL_newstate(); @@ -336,7 +336,7 @@ test('math.tointeger', function (t) { t.doesNotThrow(function () { - let bc = toByteCode(luaCode).dataView; + let bc = toByteCode(luaCode); L = lauxlib.luaL_newstate(); @@ -366,7 +366,7 @@ test('math.type', function (t) { t.doesNotThrow(function () { - let bc = toByteCode(luaCode).dataView; + let bc = toByteCode(luaCode); L = lauxlib.luaL_newstate(); @@ -408,7 +408,7 @@ test('math.ult', function (t) { t.doesNotThrow(function () { - let bc = toByteCode(luaCode).dataView; + let bc = toByteCode(luaCode); L = lauxlib.luaL_newstate(); @@ -438,7 +438,7 @@ test('math.fmod', function (t) { t.doesNotThrow(function () { - let bc = toByteCode(luaCode).dataView; + let bc = toByteCode(luaCode); L = lauxlib.luaL_newstate(); @@ -468,7 +468,7 @@ test('math.modf', function (t) { t.doesNotThrow(function () { - let bc = toByteCode(luaCode).dataView; + let bc = toByteCode(luaCode); L = lauxlib.luaL_newstate(); |