summaryrefslogtreecommitdiff
path: root/tests/test_parser.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_parser.py')
-rw-r--r--tests/test_parser.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/test_parser.py b/tests/test_parser.py
index 29c93035..cc5d6ba0 100644
--- a/tests/test_parser.py
+++ b/tests/test_parser.py
@@ -44,7 +44,7 @@ class PythonParserTest(CoverageTest):
""")
assert parser.exit_counts() == {
2:2, 3:1, 4:2, 5:1, 7:1, 9:2, 10:1
- }
+ }
def test_generator_exit_counts(self):
# https://github.com/nedbat/coveragepy/issues/324
@@ -76,7 +76,7 @@ class PythonParserTest(CoverageTest):
""")
assert parser.exit_counts() == {
1: 1, 2:1, 3:2, 4:1, 5:2, 6:1, 7:1, 8:1, 9:1
- }
+ }
def test_excluded_classes(self):
parser = self.parse_source("""\
@@ -90,7 +90,7 @@ class PythonParserTest(CoverageTest):
""")
assert parser.exit_counts() == {
1:1, 2:1, 3:1
- }
+ }
def test_missing_branch_to_excluded_code(self):
parser = self.parse_source("""\
@@ -433,10 +433,10 @@ class ParserMissingArcDescriptionTest(CoverageTest):
""")
assert parser.missing_arc_description(3, 4) == (
"line 3 didn't jump to line 4, because the pattern on line 3 never matched"
- )
+ )
assert parser.missing_arc_description(3, 5) == (
"line 3 didn't jump to line 5, because the pattern on line 3 always matched"
- )
+ )
class ParserFileTest(CoverageTest):