diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2014-09-28 21:50:46 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2014-09-28 21:50:46 -0400 |
commit | 4b61c85875c2927bb13efbfaed277f59e61c068c (patch) | |
tree | 53b60f3c381d38571acea8b9dcad54e901d5868c /tests/test_oddball.py | |
parent | 9453fa062539ac28b60c325e39c0fcbfd3b2ea10 (diff) | |
download | python-coveragepy-git-4b61c85875c2927bb13efbfaed277f59e61c068c.tar.gz |
A few more metacov clean ups
Diffstat (limited to 'tests/test_oddball.py')
-rw-r--r-- | tests/test_oddball.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_oddball.py b/tests/test_oddball.py index 47f492f6..3a013b04 100644 --- a/tests/test_oddball.py +++ b/tests/test_oddball.py @@ -173,7 +173,7 @@ class MemoryLeakTest(CoverageTest): if ram_growth > 100000: fails += 1 - if fails > 8: + if fails > 8: # pragma: only failure self.fail("RAM grew by %d" % (ram_growth)) |