aboutsummaryrefslogtreecommitdiff
path: root/tests/ldebug.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ldebug.js')
-rw-r--r--tests/ldebug.js8
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 () {