Skip to content

Commit

Permalink
Was failing the CI tests on github, maybe the issue is that extra in …
Browse files Browse the repository at this point in the history
…LogAssert is passed in by reference?
  • Loading branch information
isc-cge committed Jun 24, 2024
1 parent 19ee5b4 commit ff5a911
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cls/TestCoverage/Manager.cls
Original file line number Diff line number Diff line change
Expand Up @@ -178,10 +178,10 @@ Method CoverageTargetsSet(%value) As %Status [ Internal, Private ]
Quit $$$OK
}

Method LogAssert(success, action, description, extra, location)
Method LogAssert(success, action, description, ByRef extra, location)
{
set ^IRIS.TEMPCG($i(^IRIS.TEMPCG)) = "We're in LogAssert"
do ##super(success, action, description, extra, location)
do ##super(success, action, description, .extra, location)
if (..InteroperabilityProcesses) {
// Collect the list of PIDs used by Interoperability processes in the current namespace
// Run unit tests collecting coverage in that specific list of processes (plus the current process)
Expand Down

0 comments on commit ff5a911

Please sign in to comment.