diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-10-13 07:32:24 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-10-13 07:32:24 -0400 |
commit | 086aec37d70f1a01c0a40ffb55f5f16f98b214f7 (patch) | |
tree | 576b9baa148cbc4c47d23ce4195efa9946a1f5ce /tests/test_summary.py | |
parent | e5df01cadf622629ba8d418e96f8b14b468a551a (diff) | |
download | python-coveragepy-086aec37d70f1a01c0a40ffb55f5f16f98b214f7.tar.gz |
Fix explicit imports of __init__. #410
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 cc6b320..cf55130 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) |