Skip to content

Commit ff5a911

Browse files
committed
Was failing the CI tests on github, maybe the issue is that extra in LogAssert is passed in by reference?
1 parent 19ee5b4 commit ff5a911

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

0 commit comments

Comments
 (0)