Skip to content

Commit 4fd1a28

Browse files
committed
Maybe just make the empty string the default value
1 parent 37b9d4a commit 4fd1a28

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cls/TestCoverage/Manager.cls

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,10 +178,10 @@ Method CoverageTargetsSet(%value) As %Status [ Internal, Private ]
178178
Quit $$$OK
179179
}
180180

181-
Method LogAssert(success, action, description, ByRef extra, location)
181+
Method LogAssert(success, action, description, ByRef extra, location = "")
182182
{
183183
set ^IRIS.TEMPCG($i(^IRIS.TEMPCG)) = "We're in LogAssert"
184-
set ^IRIS.TEMPCG($i(^IRIS.TEMPCG)) = $lb(success, action, description, extra, location)
184+
set ^IRIS.TEMPCG($i(^IRIS.TEMPCG)) = $lb(success, action, description, extra, $g(location))
185185
do ##super(success, action, description, .extra, location)
186186
if (..InteroperabilityProcesses) {
187187
// Collect the list of PIDs used by Interoperability processes in the current namespace

0 commit comments

Comments
 (0)