From f6d343cf2259491ce9556758c5398e0db76d804c Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sat, 9 Jan 2016 17:34:32 -0500 Subject: Properly skip lines that are optimized away --- tests/test_arcs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/test_arcs.py') 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", ) -- cgit v1.2.1