diff options
author | daurnimator <quae@daurnimator.com> | 2017-12-10 02:22:47 +1100 |
---|---|---|
committer | daurnimator <quae@daurnimator.com> | 2017-12-10 02:36:36 +1100 |
commit | a946df6302452323706f715a28029c63f766d1db (patch) | |
tree | 971f4f82ecb648dc08a96e1a1a25bc7ef1598a0c /tests/ldebug.js | |
parent | fa8ba4f04623f66962c9fa2a502dd8d51a3eefa6 (diff) | |
download | fengari-a946df6302452323706f715a28029c63f766d1db.tar.gz fengari-a946df6302452323706f715a28029c63f766d1db.tar.bz2 fengari-a946df6302452323706f715a28029c63f766d1db.zip |
tests/: Fix linter complaints
Diffstat (limited to 'tests/ldebug.js')
-rw-r--r-- | tests/ldebug.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/ldebug.js b/tests/ldebug.js index 8809bde..857345e 100644 --- a/tests/ldebug.js +++ b/tests/ldebug.js @@ -11,7 +11,7 @@ test('luaG_typeerror', function (t) { local a = true return #a `, L; - + t.plan(2); t.doesNotThrow(function () { @@ -66,7 +66,7 @@ test('luaG_typeerror', function (t) { local a = true return a.yo `, L; - + t.plan(2); t.doesNotThrow(function () { @@ -145,7 +145,7 @@ test('luaG_opinterror', function (t) { let luaCode = ` return {} + 'hello' `, L; - + t.plan(2); t.doesNotThrow(function () { @@ -171,7 +171,7 @@ test('luaG_tointerror', function (t) { let luaCode = ` return 123.5 & 12 `, L; - + t.plan(2); t.doesNotThrow(function () { |