Skip to content

Commit 3f8d449

Browse files
committed
Trying to pass every argument by reference
1 parent 4bd62d7 commit 3f8d449

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,11 +178,11 @@ 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, extra, location)
182182
{
183183
set ^IRIS.TEMPCG($i(^IRIS.TEMPCG)) = "We're in LogAssert"
184184
set ^IRIS.TEMPCG($i(^IRIS.TEMPCG)) = $lb(success, action, description, extra, $g(location))
185-
do ##super(success, action, description, .extra, $g(location))
185+
do ##super(.success, .action, .description, .extra, .location)
186186
if (..InteroperabilityProcesses) {
187187
// Collect the list of PIDs used by Interoperability processes in the current namespace
188188
// Run unit tests collecting coverage in that specific list of processes (plus the current process)

0 commit comments

Comments
 (0)