summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/test_oddball.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/test_oddball.py b/tests/test_oddball.py
index 1fa369aa..91acc0c6 100644
--- a/tests/test_oddball.py
+++ b/tests/test_oddball.py
@@ -485,8 +485,10 @@ class GettraceTest(CoverageTest):
old = sys.gettrace()
test_unsets_trace()
sys.settrace(old)
+ a = 21
+ b = 22
''',
- lines=[1, 3, 4, 5, 7, 8, 10, 11, 12, 14, 15, 16, 18, 19, 20],
+ lines=[1, 3, 4, 5, 7, 8, 10, 11, 12, 14, 15, 16, 18, 19, 20, 21, 22],
missing="4-5, 11-12",
)