Skip to content

Commit

Permalink
Maybe just make the empty string the default value
Browse files Browse the repository at this point in the history
  • Loading branch information
isc-cge committed Jun 25, 2024
1 parent 37b9d4a commit 4fd1a28
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, ByRef extra, location)
Method LogAssert(success, action, description, ByRef extra, location = "")
{
set ^IRIS.TEMPCG($i(^IRIS.TEMPCG)) = "We're in LogAssert"
set ^IRIS.TEMPCG($i(^IRIS.TEMPCG)) = $lb(success, action, description, extra, location)
set ^IRIS.TEMPCG($i(^IRIS.TEMPCG)) = $lb(success, action, description, extra, $g(location))
do ##super(success, action, description, .extra, location)
if (..InteroperabilityProcesses) {
// Collect the list of PIDs used by Interoperability processes in the current namespace
Expand Down

0 comments on commit 4fd1a28

Please sign in to comment.