diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2012-11-29 23:10:06 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2012-11-29 23:10:06 -0500 |
commit | 8600bdfd07e069e5f6b78631b14320cb49ee8457 (patch) | |
tree | c9157a7dc5ca5b92a3262c45903c490fb8de3997 /test/test_summary.py | |
parent | f8d10e6d49a0d34e98cd45a4b0a3c230bdcadda3 (diff) | |
download | python-coveragepy-git-8600bdfd07e069e5f6b78631b14320cb49ee8457.tar.gz |
Refactor a bunch of tests to isolate the recursive coverage calls.
Diffstat (limited to 'test/test_summary.py')
-rw-r--r-- | test/test_summary.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test/test_summary.py b/test/test_summary.py index b460c2dc..e4d5e543 100644 --- a/test/test_summary.py +++ b/test/test_summary.py @@ -280,9 +280,7 @@ class ReportingReturnValue(CoverageTest): """) cov = coverage.coverage() - cov.start() - self.import_local_file("doit") - cov.stop() + self.start_import_stop(cov, "doit") return cov def test_report(self): |