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/lcorolib.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/lcorolib.js')
-rw-r--r-- | tests/lcorolib.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/lcorolib.js b/tests/lcorolib.js index f709fa5..d97e681 100644 --- a/tests/lcorolib.js +++ b/tests/lcorolib.js @@ -34,7 +34,7 @@ test('coroutine.create, coroutine.yield, coroutine.resume', function (t) { t.doesNotThrow(function () { - let bc = toByteCode(luaCode).dataView; + let bc = toByteCode(luaCode); L = lauxlib.luaL_newstate(); @@ -77,7 +77,7 @@ test('coroutine.status', function (t) { t.doesNotThrow(function () { - let bc = toByteCode(luaCode).dataView; + let bc = toByteCode(luaCode); L = lauxlib.luaL_newstate(); @@ -118,7 +118,7 @@ test('coroutine.isyieldable', function (t) { t.doesNotThrow(function () { - let bc = toByteCode(luaCode).dataView; + let bc = toByteCode(luaCode); L = lauxlib.luaL_newstate(); @@ -159,7 +159,7 @@ test('coroutine.running', function (t) { t.doesNotThrow(function () { - let bc = toByteCode(luaCode).dataView; + let bc = toByteCode(luaCode); L = lauxlib.luaL_newstate(); @@ -200,7 +200,7 @@ test('coroutine.wrap', function (t) { t.doesNotThrow(function () { - let bc = toByteCode(luaCode).dataView; + let bc = toByteCode(luaCode); L = lauxlib.luaL_newstate(); |