diff --git a/tests/conformance/basic.luau b/tests/conformance/basic.luau index d6f09fa6..52483f28 100644 --- a/tests/conformance/basic.luau +++ b/tests/conformance/basic.luau @@ -60,8 +60,8 @@ assert(concat(pcall(function() return 1, 2, 3 end)) == "true,1,2,3") assert(concat(pcall(function() - error("oops") -end)) == "false,basic.luau:39: oops") + error("oops") +end)) == "false,basic.luau:63: oops") -- assignments assert((function() diff --git a/tests/conformance/closure.luau b/tests/conformance/closure.luau index 98b4d9d2..52f8e3af 100644 --- a/tests/conformance/closure.luau +++ b/tests/conformance/closure.luau @@ -340,7 +340,7 @@ function foo() error("foo") end -local fooerr = "closure.luau:284: foo" +local fooerr = "closure.luau:351: foo" function goo() foo() diff --git a/tests/conformance/pcall.luau b/tests/conformance/pcall.luau index d6a83de9..3c18b540 100644 --- a/tests/conformance/pcall.luau +++ b/tests/conformance/pcall.luau @@ -164,7 +164,7 @@ checkresults( -- error after yield tests checkresults( - { "yield", "return", false, "pcall.luau:80: foo" }, + { "yield", "return", false, "pcall.luau:167: foo" }, colog(function() return pcall(function() coroutine.yield() @@ -173,7 +173,7 @@ checkresults( end) ) checkresults( - { "yield", "yield", "return", true, false, "pcall.luau:81: foo" }, + { "yield", "yield", "return", true, false, "pcall.luau:176: foo" }, colog(function() return pcall(function() coroutine.yield() @@ -185,7 +185,7 @@ checkresults( end) ) checkresults( - { "yield", "yield", "return", false, "pcall.luau:82: bar" }, + { "yield", "yield", "return", false, "pcall.luau:188: bar" }, colog(function() return pcall(function() coroutine.yield() @@ -267,7 +267,7 @@ checkresults( -- xpcall immediate error handling checkresults( - { false, "pcall.luau:103: foo" }, + { false, "pcall.luau:270: foo" }, xpcall(function() error("foo") end, function(err)