diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2009-11-21 15:52:35 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-11-21 15:52:35 -0500 |
commit | eb87298b8bb9dcbf81173df8ff41cb21f6469863 (patch) | |
tree | 45a2d15aef1f86f7356d97293710bc7f5e091431 /test/test_parser.py | |
parent | 52f6347fb47e4d4fb822ab899e9d5fb23684156d (diff) | |
download | python-coveragepy-git-eb87298b8bb9dcbf81173df8ff41cb21f6469863.tar.gz |
Hmmm, 0 exits for the class def doesn't seem right, but I don't know what to do about it right now.
Diffstat (limited to 'test/test_parser.py')
-rw-r--r-- | test/test_parser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_parser.py b/test/test_parser.py index 201d5329..9f0f00b0 100644 --- a/test/test_parser.py +++ b/test/test_parser.py @@ -64,7 +64,7 @@ class ParserTest(CoverageTest): pass """) self.assertEqual(cp.exit_counts(), { - 1:1, 2:1, 3:1 + 1:0, 2:1, 3:1 }) def XXX_missing_branch_to_excluded_code(self): |