aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authordaurnimator <quae@daurnimator.com>2017-05-05 09:50:40 +1000
committerdaurnimator <quae@daurnimator.com>2017-05-05 10:00:39 +1000
commit84a0982085967895e9bb5e5439c09960840da2d5 (patch)
tree8bb3571de9540634c7c119f24cdc9a30a5121490 /tests
parent42820bafe8433cbba4158ea7a2e11f40e9d2c635 (diff)
downloadfengari-84a0982085967895e9bb5e5439c09960840da2d5.tar.gz
fengari-84a0982085967895e9bb5e5439c09960840da2d5.tar.bz2
fengari-84a0982085967895e9bb5e5439c09960840da2d5.zip
src/lauxlib.js: Fix traceback text
Diffstat (limited to 'tests')
-rw-r--r--tests/ldblib.js48
1 files changed, 24 insertions, 24 deletions
diff --git a/tests/ldblib.js b/tests/ldblib.js
index 83d0743..4569e98 100644
--- a/tests/ldblib.js
+++ b/tests/ldblib.js
@@ -340,18 +340,18 @@ test('debug.traceback (with a global)', function (t) {
t.strictEqual(
lua.lua_tojsstring(L, -1),
`stack traceback:
-\t...[string "traceback-test"]9: in function 'rec'
-\t...[string "traceback-test"]7: in function 'rec'
-\t...[string "traceback-test"]7: in function 'rec'
-\t...[string "traceback-test"]7: in function 'rec'
-\t...[string "traceback-test"]7: in function 'rec'
-\t...[string "traceback-test"]7: in function 'rec'
-\t...[string "traceback-test"]7: in function 'rec'
-\t...[string "traceback-test"]7: in function 'rec'
-\t...[string "traceback-test"]7: in function 'rec'
-\t...[string "traceback-test"]7: in function 'rec'
-\t...[string "traceback-test"]7: in function 'rec'
-\t...[string "traceback-test"]15: in main chunk`,
+\t[string "traceback-test"]:9: in function 'rec'
+\t[string "traceback-test"]:7: in function 'rec'
+\t[string "traceback-test"]:7: in function 'rec'
+\t[string "traceback-test"]:7: in function 'rec'
+\t[string "traceback-test"]:7: in function 'rec'
+\t[string "traceback-test"]:7: in function 'rec'
+\t[string "traceback-test"]:7: in function 'rec'
+\t[string "traceback-test"]:7: in function 'rec'
+\t[string "traceback-test"]:7: in function 'rec'
+\t[string "traceback-test"]:7: in function 'rec'
+\t[string "traceback-test"]:7: in function 'rec'
+\t[string "traceback-test"]:15: in main chunk`,
"Correct element(s) on the stack"
);
@@ -399,18 +399,18 @@ test('debug.traceback (with a upvalue)', function (t) {
t.strictEqual(
lua.lua_tojsstring(L, -1),
`stack traceback:
-\t...[string "traceback-test"]10: in upvalue 'rec'
-\t...[string "traceback-test"]8: in upvalue 'rec'
-\t...[string "traceback-test"]8: in upvalue 'rec'
-\t...[string "traceback-test"]8: in upvalue 'rec'
-\t...[string "traceback-test"]8: in upvalue 'rec'
-\t...[string "traceback-test"]8: in upvalue 'rec'
-\t...[string "traceback-test"]8: in upvalue 'rec'
-\t...[string "traceback-test"]8: in upvalue 'rec'
-\t...[string "traceback-test"]8: in upvalue 'rec'
-\t...[string "traceback-test"]8: in upvalue 'rec'
-\t...[string "traceback-test"]8: in local 'rec'
-\t...[string "traceback-test"]16: in main chunk`,
+\t[string "traceback-test"]:10: in upvalue 'rec'
+\t[string "traceback-test"]:8: in upvalue 'rec'
+\t[string "traceback-test"]:8: in upvalue 'rec'
+\t[string "traceback-test"]:8: in upvalue 'rec'
+\t[string "traceback-test"]:8: in upvalue 'rec'
+\t[string "traceback-test"]:8: in upvalue 'rec'
+\t[string "traceback-test"]:8: in upvalue 'rec'
+\t[string "traceback-test"]:8: in upvalue 'rec'
+\t[string "traceback-test"]:8: in upvalue 'rec'
+\t[string "traceback-test"]:8: in upvalue 'rec'
+\t[string "traceback-test"]:8: in local 'rec'
+\t[string "traceback-test"]:16: in main chunk`,
"Correct element(s) on the stack"
);