diff options
Diffstat (limited to 'tests/test_summary.py')
-rw-r--r-- | tests/test_summary.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_summary.py b/tests/test_summary.py index cc6b3204..cf55130a 100644 --- a/tests/test_summary.py +++ b/tests/test_summary.py @@ -588,7 +588,7 @@ class SummaryTest2(CoverageTest): report = repout.getvalue().replace('\\', '/') report = re.sub(r"\s+", " ", report) - self.assertIn("tests/modules/pkg1/__init__.py 1 0 100%", report) + self.assertIn("tests/modules/pkg1/__init__.py 2 0 100%", report) self.assertIn("tests/modules/pkg2/__init__.py 0 0 100%", report) |