diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2020-07-05 17:37:17 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2020-07-05 17:37:17 -0400 |
commit | 1a2ed8fa4d27e6dbc5522f2d79e5b89c2aff13a3 (patch) | |
tree | 8b9b4844f34e56c8d6447a995f7cebe0c95c61de | |
parent | 085e18b09636f9ba9fd423b1df7a0a74d7699aaf (diff) | |
download | python-coveragepy-git-1a2ed8fa4d27e6dbc5522f2d79e5b89c2aff13a3.tar.gz |
A known failure has been fixed
-rw-r--r-- | tests/test_parser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_parser.py b/tests/test_parser.py index 19264043..a8da45cf 100644 --- a/tests/test_parser.py +++ b/tests/test_parser.py @@ -139,7 +139,7 @@ class PythonParserTest(CoverageTest): @xfail( - env.PYPY3 and env.PYPYVERSION >= (7, 3, 0), + env.PYPY3 and env.PYPYVERSION == (7, 3, 0), "https://bitbucket.org/pypy/pypy/issues/3139", ) def test_decorator_pragmas(self): |