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 | e45ea8f7c49e3dbbadc9a7ec779703fc57adce78 (patch) | |
tree | 4008f45a1fe7d4dddfea40e679b82215bf796a84 /tests/test_summary.py | |
parent | 51b98c60a34531113827aa6e8cf79cd70711f980 (diff) | |
download | python-coveragepy-git-e45ea8f7c49e3dbbadc9a7ec779703fc57adce78.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 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) |