From b3e2cedff9b47285709d83d9dc53dde5f2ba19e5 Mon Sep 17 00:00:00 2001 From: daurnimator Date: Fri, 5 May 2017 11:14:01 +1000 Subject: src/ldebug.js: Fix off by one error when calculating line number --- tests/ldblib.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests') diff --git a/tests/ldblib.js b/tests/ldblib.js index 4569e98..1adfef5 100644 --- a/tests/ldblib.js +++ b/tests/ldblib.js @@ -351,7 +351,7 @@ test('debug.traceback (with a global)', function (t) { \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"]:13: in main chunk`, "Correct element(s) on the stack" ); @@ -410,7 +410,7 @@ test('debug.traceback (with a upvalue)', function (t) { \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"]:14: in main chunk`, "Correct element(s) on the stack" ); -- cgit v1.2.3-54-g00ecf