diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2016-01-02 15:38:24 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2016-01-02 15:38:24 -0500 |
commit | c116e3e2030e1d85897091f8f7ef7796471a1b5b (patch) | |
tree | 8dee746d3d3a2078b0fcb9053ae254b28fd1bc22 /tests/test_parser.py | |
parent | f98d5bfb6e939f046478b502e2041ac82f91632d (diff) | |
download | python-coveragepy-git-c116e3e2030e1d85897091f8f7ef7796471a1b5b.tar.gz |
Fix another test changed by better try-except measurement
--HG--
branch : ast-branch
Diffstat (limited to 'tests/test_parser.py')
-rw-r--r-- | tests/test_parser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_parser.py b/tests/test_parser.py index 44a261d9..e6f28737 100644 --- a/tests/test_parser.py +++ b/tests/test_parser.py @@ -72,7 +72,7 @@ class PythonParserTest(CoverageTest): b = 9 """) self.assertEqual(parser.exit_counts(), { - 1: 1, 2:1, 3:1, 4:1, 5:1, 6:1, 7:1, 8:1, 9:1 + 1: 1, 2:1, 3:2, 4:1, 5:2, 6:1, 7:1, 8:1, 9:1 }) def test_excluded_classes(self): |