From e45ea8f7c49e3dbbadc9a7ec779703fc57adce78 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Tue, 13 Oct 2015 07:32:24 -0400 Subject: Fix explicit imports of __init__. #410 --- tests/test_summary.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/test_summary.py') 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) -- cgit v1.2.1