diff options
Diffstat (limited to 'tests/test_arcs.py')
-rw-r--r-- | tests/test_arcs.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_arcs.py b/tests/test_arcs.py index 5ba2908f..19aaeb2c 100644 --- a/tests/test_arcs.py +++ b/tests/test_arcs.py @@ -1523,8 +1523,8 @@ class AsyncTest(CoverageTest): self.assertEqual(self.stdout(), "Compute 1 + 2 ...\n1 + 2 = 3\n") def test_async_for(self): - if env.PYBEHAVIOR.bug39114: - self.xfail("https://bugs.python.org/issue39114") + if env.PYVERSION >= (3, 9, 0, 'alpha', 2): + self.xfail("https://bugs.python.org/issue39166") self.check_coverage("""\ import asyncio |