summaryrefslogtreecommitdiff
path: root/tests/test_summary.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_summary.py')
-rw-r--r--tests/test_summary.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_summary.py b/tests/test_summary.py
index 8c9cf6d7..fa5b4461 100644
--- a/tests/test_summary.py
+++ b/tests/test_summary.py
@@ -435,8 +435,8 @@ class SummaryTest(CoverageTest):
report = self.get_report(cov)
self.assertNotIn("NoSource", report)
report = report.splitlines()
- self.assertIn("start 2 0 100%", report)
- self.assertIn("mod 1 0 100%", report)
+ self.assertIn("start.pyw 2 0 100%", report)
+ self.assertIn("mod.pyw 1 0 100%", report)
class SummaryTest2(CoverageTest):