diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2021-05-01 19:25:14 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2021-05-02 07:38:20 -0400 |
commit | c6ba56c68b2a3850f530cc1fdbf9856a90559a1f (patch) | |
tree | 4b2fd9dd4139a5d9ed233ca2da8f1c4952103b39 /tests/test_parser.py | |
parent | d2dad79e0d0611eb519995bd8696f1ada2bcd2cd (diff) | |
download | python-coveragepy-git-c6ba56c68b2a3850f530cc1fdbf9856a90559a1f.tar.gz |
refactor: remove a few more version checks
Diffstat (limited to 'tests/test_parser.py')
-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 4a12c59c..46ee25f3 100644 --- a/tests/test_parser.py +++ b/tests/test_parser.py @@ -138,7 +138,7 @@ class PythonParserTest(CoverageTest): """) @pytest.mark.xfail( - env.PYPY3 and env.PYPYVERSION == (7, 3, 0), + env.PYPY and env.PYPYVERSION == (7, 3, 0), reason="https://bitbucket.org/pypy/pypy/issues/3139", ) def test_decorator_pragmas(self): |