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.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/test_parser.py b/tests/test_parser.py
index 1e509035..2393ccd1 100644
--- a/tests/test_parser.py
+++ b/tests/test_parser.py
@@ -240,6 +240,10 @@ class PythonParserTest(CoverageTest):
expected_arcs.update(set(arcz_to_arcs("-46 6-4")))
expected_exits.update({6: 1})
+ if env.PYBEHAVIOR.trace_decorator_line_again:
+ expected_arcs.update(set(arcz_to_arcs("54 98")))
+ expected_exits.update({9: 2, 5: 2})
+
assert expected_statements == parser.statements
assert expected_arcs == parser.arcs()
assert expected_exits == parser.exit_counts()