diff options
Diffstat (limited to 'tests/test_arcs.py')
-rw-r--r-- | tests/test_arcs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_arcs.py b/tests/test_arcs.py index c8814779..27b8c50b 100644 --- a/tests/test_arcs.py +++ b/tests/test_arcs.py @@ -956,7 +956,6 @@ class MiscArcTest(CoverageTest): ) def test_optimized_away_lines(self): - self.skip("TODO: fix this test") self.check_coverage("""\ a = 1 if len([2]): @@ -968,6 +967,7 @@ class MiscArcTest(CoverageTest): """, lines=[1, 2, 3, 7], arcz=".1 12 23 27 37 7.", + arcz_missing="27", ) |