@@ -314,7 +314,7 @@ def test_cant_change_file_tracer_name(self):
314
314
covdata .add_lines ({"p1.foo" : dict .fromkeys ([1 , 2 , 3 ])})
315
315
covdata .add_file_tracers ({"p1.foo" : "p1.plugin" })
316
316
317
- msg = "Conflicting file tracer name for 'p1.foo': u? 'p1.plugin' vs u? 'p1.plugin.foo'"
317
+ msg = "Conflicting file tracer name for 'p1.foo': 'p1.plugin' vs 'p1.plugin.foo'"
318
318
with pytest .raises (CoverageException , match = msg ):
319
319
covdata .add_file_tracers ({"p1.foo" : "p1.plugin.foo" })
320
320
@@ -401,11 +401,11 @@ def test_update_conflicting_file_tracers(self):
401
401
covdata2 .add_lines ({"p1.html" : dict .fromkeys ([1 , 2 , 3 ])})
402
402
covdata2 .add_file_tracers ({"p1.html" : "html.other_plugin" })
403
403
404
- msg = "Conflicting file tracer name for 'p1.html': u? 'html.plugin' vs u? 'html.other_plugin'"
404
+ msg = "Conflicting file tracer name for 'p1.html': 'html.plugin' vs 'html.other_plugin'"
405
405
with pytest .raises (CoverageException , match = msg ):
406
406
covdata1 .update (covdata2 )
407
407
408
- msg = "Conflicting file tracer name for 'p1.html': u? 'html.other_plugin' vs u? 'html.plugin'"
408
+ msg = "Conflicting file tracer name for 'p1.html': 'html.other_plugin' vs 'html.plugin'"
409
409
with pytest .raises (CoverageException , match = msg ):
410
410
covdata2 .update (covdata1 )
411
411
@@ -417,11 +417,11 @@ def test_update_file_tracer_vs_no_file_tracer(self):
417
417
covdata2 = DebugCoverageData (suffix = "2" )
418
418
covdata2 .add_lines ({"p1.html" : dict .fromkeys ([1 , 2 , 3 ])})
419
419
420
- msg = "Conflicting file tracer name for 'p1.html': u? 'html.plugin' vs u? ''"
420
+ msg = "Conflicting file tracer name for 'p1.html': 'html.plugin' vs ''"
421
421
with pytest .raises (CoverageException , match = msg ):
422
422
covdata1 .update (covdata2 )
423
423
424
- msg = "Conflicting file tracer name for 'p1.html': u? '' vs u? 'html.plugin'"
424
+ msg = "Conflicting file tracer name for 'p1.html': '' vs 'html.plugin'"
425
425
with pytest .raises (CoverageException , match = msg ):
426
426
covdata2 .update (covdata1 )
427
427
0 commit comments