diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2016-01-09 17:34:32 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2016-01-09 17:34:32 -0500 |
commit | f6d343cf2259491ce9556758c5398e0db76d804c (patch) | |
tree | 1849e804fda55277f0ed201be3924e0927f0037f /tests/test_arcs.py | |
parent | f2beb9c5e97fd887fe0b848812432bf467f30582 (diff) | |
download | python-coveragepy-git-f6d343cf2259491ce9556758c5398e0db76d804c.tar.gz |
Properly skip lines that are optimized away
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", ) |