From 61ee81136a609586c96e553ea49ab7828c7424fa Mon Sep 17 00:00:00 2001 From: George Cook Date: Tue, 5 May 2020 21:03:15 -0500 Subject: [PATCH] fix(core): minor logger fix --- src/TestLogger.bs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TestLogger.bs b/src/TestLogger.bs index 2881f389..a15a18f9 100644 --- a/src/TestLogger.bs +++ b/src/TestLogger.bs @@ -85,7 +85,7 @@ public sub PrintTestStatistic(testCase as object) if (LCase(testCase.Result) <> "success") testChar = "-" assertIndex = metaTestCase.testResult.failedAssertIndex - locationLine = StrI(RBS_TC_GetAssertLine(metaTestCase, assertIndex)).trim() + locationLine = StrI(RBS_TC_UnitTestCase_GetAssertLine(metaTestCase, assertIndex)).trim() else testChar = "|" locationLine = StrI(metaTestCase.lineNumber).trim()