diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2019-12-31 16:43:47 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2019-12-31 16:43:47 -0500 |
commit | 60a770964656bd45493417ee72bcdb280a7c0e07 (patch) | |
tree | 276217ef359cc24f94d6ab07726ff8db4dba2a81 /tests | |
parent | 957e6a6f17a9eb8eea51be972052fcd98ff7a2fd (diff) | |
download | python-coveragepy-git-60a770964656bd45493417ee72bcdb280a7c0e07.tar.gz |
bpo-39114 will be fixed soon.
Diffstat (limited to 'tests')
-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 |