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/lcorolib.js | |
parent | fa8ba4f04623f66962c9fa2a502dd8d51a3eefa6 (diff) | |
download | fengari-a946df6302452323706f715a28029c63f766d1db.tar.gz fengari-a946df6302452323706f715a28029c63f766d1db.tar.bz2 fengari-a946df6302452323706f715a28029c63f766d1db.zip |
tests/: Fix linter complaints
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 4faf13b..e1868b2 100644 --- a/tests/lcorolib.js +++ b/tests/lcorolib.js @@ -20,7 +20,7 @@ test('coroutine.create, coroutine.yield, coroutine.resume', function (t) { return pow `, L; - + t.plan(2); t.doesNotThrow(function () { @@ -61,7 +61,7 @@ test('coroutine.status', function (t) { return s1, s2 `, L; - + t.plan(3); t.doesNotThrow(function () { @@ -100,7 +100,7 @@ test('coroutine.isyieldable', function (t) { return yieldable, coroutine.isyieldable() `, L; - + t.plan(3); t.doesNotThrow(function () { @@ -139,7 +139,7 @@ test('coroutine.running', function (t) { return running, ismain `, L; - + t.plan(3); t.doesNotThrow(function () { @@ -178,7 +178,7 @@ test('coroutine.wrap', function (t) { return pow `, L; - + t.plan(2); t.doesNotThrow(function () { |