File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -202,7 +202,7 @@ def check_coverage(
202
202
if isinstance (lines [0 ], int ):
203
203
# lines is just a list of numbers, it must match the statements
204
204
# found in the code.
205
- assert statements == lines , f"{ statements !r} != { lines !r} "
205
+ assert statements == lines , f"lines: { statements !r} != { lines !r} "
206
206
else :
207
207
# lines is a list of possible line number lists, one of them
208
208
# must match.
@@ -214,7 +214,7 @@ def check_coverage(
214
214
215
215
missing_formatted = analysis .missing_formatted ()
216
216
if isinstance (missing , str ):
217
- msg = f"{ missing_formatted !r} != { missing !r} "
217
+ msg = f"missing: { missing_formatted !r} != { missing !r} "
218
218
assert missing_formatted == missing , msg
219
219
else :
220
220
for missing_list in missing :
You can’t perform that action at this time.
0 commit comments