diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-02-09 10:55:46 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-02-09 10:55:46 -0500 |
commit | c241ca7e844eafc5f06bdac8852c8b026cfa0c83 (patch) | |
tree | f9e0c65d7f0c41ddb2bba46bd4ebc9aaffbd07b0 /tests/test_summary.py | |
parent | 3f5d571b0146531ceae5c57ed15fafaca3202be7 (diff) | |
download | python-coveragepy-git-c241ca7e844eafc5f06bdac8852c8b026cfa0c83.tar.gz |
Remove (most) tearDown functions in favor of addCleanup
Diffstat (limited to 'tests/test_summary.py')
-rw-r--r-- | tests/test_summary.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_summary.py b/tests/test_summary.py index 878ae894..c7327f1f 100644 --- a/tests/test_summary.py +++ b/tests/test_summary.py @@ -501,8 +501,8 @@ class SummaryTest(CoverageTest): class SummaryTest2(CoverageTest): """Another bunch of summary tests.""" # This class exists because tests naturally clump into classes based on the - # needs of their setUp and tearDown, rather than the product features they - # are testing. There's probably a better way to organize these. + # needs of their setUp, rather than the product features they are testing. + # There's probably a better way to organize these. run_in_temp_dir = False |