diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2016-01-07 20:07:04 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2016-01-07 20:07:04 -0500 |
commit | b7035114aa515d9d1fe171a9bf678868e76d8f74 (patch) | |
tree | 60609f38079b9de18cdbee1d255e96e9c666dd31 /tests/test_parser.py | |
parent | d1c92d8e6b066a7b16d625b566853821afe8b46c (diff) | |
parent | d93ddb9524a3e3535541812bbeade8e8ff822409 (diff) | |
download | python-coveragepy-git-b7035114aa515d9d1fe171a9bf678868e76d8f74.tar.gz |
Branch analysis is now done with AST instead of bytecode
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 2a4c88a7..c32fdc4d 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): |