summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2016-01-02 16:46:34 -0500
committerNed Batchelder <ned@nedbatchelder.com>2016-01-02 16:46:34 -0500
commit27da5437306583614d6693d4f58bf5db202e2e7e (patch)
treec3e608a35bc6689fb21ad442eb5385bfbd6eee47 /tests
parentf40080976462d859337876e32c4320b46d6973e7 (diff)
downloadpython-coveragepy-27da5437306583614d6693d4f58bf5db202e2e7e.tar.gz
No reason to skip this test
Diffstat (limited to 'tests')
-rw-r--r--tests/test_arcs.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/test_arcs.py b/tests/test_arcs.py
index 91811e4..607ff68 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",
)