summaryrefslogtreecommitdiff
path: root/tests/ldebug.js
diff options
context:
space:
mode:
authorBenoit Giannangeli <giann008@gmail.com>2017-04-24 15:11:12 +0200
committerBenoit Giannangeli <giann008@gmail.com>2017-04-24 15:11:12 +0200
commit31dcd12f5a9cd6a45e8ad9d1213a8a25d88fe885 (patch)
tree18fae5b71f40278e64ac8733827d2bea7e58d588 /tests/ldebug.js
parentb9f9cde1c18ace3930be4cb7f6d9527178544d8b (diff)
downloadfengari-31dcd12f5a9cd6a45e8ad9d1213a8a25d88fe885.tar.gz
fengari-31dcd12f5a9cd6a45e8ad9d1213a8a25d88fe885.tar.bz2
fengari-31dcd12f5a9cd6a45e8ad9d1213a8a25d88fe885.zip
Removed useless luac -l from tests
Diffstat (limited to 'tests/ldebug.js')
-rw-r--r--tests/ldebug.js14
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/ldebug.js b/tests/ldebug.js
index e24b584..0256465 100644
--- a/tests/ldebug.js
+++ b/tests/ldebug.js
@@ -24,7 +24,7 @@ test('luaG_typeerror', function (t) {
t.doesNotThrow(function () {
- let bc = toByteCode(luaCode).dataView;
+ let bc = toByteCode(luaCode);
L = lauxlib.luaL_newstate();
@@ -54,7 +54,7 @@ test('luaG_typeerror', function (t) {
t.doesNotThrow(function () {
- let bc = toByteCode(luaCode).dataView;
+ let bc = toByteCode(luaCode);
L = lauxlib.luaL_newstate();
@@ -83,7 +83,7 @@ test('luaG_typeerror', function (t) {
t.doesNotThrow(function () {
- let bc = toByteCode(luaCode).dataView;
+ let bc = toByteCode(luaCode);
L = lauxlib.luaL_newstate();
@@ -112,7 +112,7 @@ test('luaG_typeerror', function (t) {
t.doesNotThrow(function () {
- let bc = toByteCode(luaCode).dataView;
+ let bc = toByteCode(luaCode);
L = lauxlib.luaL_newstate();
@@ -140,7 +140,7 @@ test('luaG_concaterror', function (t) {
t.doesNotThrow(function () {
- let bc = toByteCode(luaCode).dataView;
+ let bc = toByteCode(luaCode);
L = lauxlib.luaL_newstate();
@@ -168,7 +168,7 @@ test('luaG_opinterror', function (t) {
t.doesNotThrow(function () {
- let bc = toByteCode(luaCode).dataView;
+ let bc = toByteCode(luaCode);
L = lauxlib.luaL_newstate();
@@ -196,7 +196,7 @@ test('luaG_tointerror', function (t) {
t.doesNotThrow(function () {
- let bc = toByteCode(luaCode).dataView;
+ let bc = toByteCode(luaCode);
L = lauxlib.luaL_newstate();