From 648b136e67caa01742363f5a4224288c5703cdee Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Fri, 10 Jan 2020 07:26:35 -0500 Subject: bpo39166 is fixed --- tests/test_arcs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_arcs.py b/tests/test_arcs.py index 5a712e02..545145a5 100644 --- a/tests/test_arcs.py +++ b/tests/test_arcs.py @@ -1523,7 +1523,7 @@ class AsyncTest(CoverageTest): self.assertEqual(self.stdout(), "Compute 1 + 2 ...\n1 + 2 = 3\n") def test_async_for(self): - if env.PYVERSION >= (3, 9, 0, 'alpha', 2): + if env.PYVERSION == (3, 9, 0, 'alpha', 2, 0): self.xfail("https://bugs.python.org/issue39166") self.check_coverage("""\ import asyncio -- cgit v1.2.1