We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8afd4e commit 68a0e76Copy full SHA for 68a0e76
cls/TestCoverage/Utils/LineByLineMonitor.cls
@@ -68,7 +68,7 @@ ClassMethod PyStartWithScope(pCoverageClasses As %List) [ Language = python ]
68
class_name = frame.f_globals['__name__']
69
# extracts the line number
70
line_no = frame.f_lineno
71
- if class_name in tCoverageClasses and line_no != 1: # if this is in a covered class
+ if class_name in tCoverageClasses and line_no > 1: # if this is in a covered class
72
tGlob = iris.gref('^IRIS.Temp.TestCoveragePY') # python doesn't have macros -- this is $$$PyMonitorResults
73
# $$$PyMonitorResults(classname, linenumber) = the number of times that linenumber in that class was covered
74
0 commit comments