diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2022-08-25 09:22:29 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2022-08-25 09:22:29 -0400 |
commit | ceb65dc5672fc0f14b81c751ca633cb72e7387c2 (patch) | |
tree | dd054cbc9ac054c136b072c510efd23d8b5c554c | |
parent | ccc82ead73b1cd756cd3b24ea6bb1d8d7faaa79c (diff) | |
download | python-coveragepy-git-ceb65dc5672fc0f14b81c751ca633cb72e7387c2.tar.gz |
test: pypy partially fixed issue 3792
https://foss.heptapod.net/pypy/pypy/-/issues/3792
-rw-r--r-- | tests/test_process.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/test_process.py b/tests/test_process.py index fcbcb9ba..70d6b934 100644 --- a/tests/test_process.py +++ b/tests/test_process.py @@ -283,7 +283,6 @@ class ProcessTest(CoverageTest): assert "rror" not in out assert status == 1 - @xfail_pypy_3792 # Because the file names aren't yet absolute. def test_code_throws(self): self.make_file("throw.py", """\ class MyException(Exception): |