diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2016-01-02 16:46:34 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2016-01-02 16:46:34 -0500 |
commit | e2ac7b25ec59a7146c9a9b29e9b5b07df101b0b5 (patch) | |
tree | e08682b3b5213848e2a181de308e62053789ce0b | |
parent | 5698ff871885333897392483d845fb7ce12f680f (diff) | |
download | python-coveragepy-git-e2ac7b25ec59a7146c9a9b29e9b5b07df101b0b5.tar.gz |
No reason to skip this test
--HG--
branch : ast-branch
-rw-r--r-- | tests/test_arcs.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/test_arcs.py b/tests/test_arcs.py index 91811e45..607ff68e 100644 --- a/tests/test_arcs.py +++ b/tests/test_arcs.py @@ -143,13 +143,12 @@ class SimpleArcTest(CoverageTest): ) def test_unused_lambdas_are_confusing_bug_90(self): - self.skip("Expected failure: bug 90") self.check_coverage("""\ a = 1 fn = lambda x: x b = 3 """, - arcz=".1 12 .2 2-2 23 3." + arcz=".1 12 .2 2-2 23 3.", arcz_missing=".2 2-2", ) |