diff options
Diffstat (limited to 'tests/test_arcs.py')
-rw-r--r-- | tests/test_arcs.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/test_arcs.py b/tests/test_arcs.py index 1388d506..c1fd35b6 100644 --- a/tests/test_arcs.py +++ b/tests/test_arcs.py @@ -1094,10 +1094,11 @@ class OptimizedIfTest(CoverageTest): if 0: e = 11 f = 12 if 0: g = 13 - h = 14 + h = 14 + i = 15 """, - lines=[1, 12, 14], - arcz=".1 1C CE E.", + lines=[1, 12, 14, 15], + arcz=".1 1C CE EF F.", ) def test_constant_if(self): |