We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90f2cc1 commit 8c6fc2aCopy full SHA for 8c6fc2a
tests/issues/test_552_windows_hang.py
@@ -41,6 +41,6 @@ async def test_windows_process_creation():
41
except ProcessLookupError:
42
pytest.xfail("Process creation failed with ProcessLookupError")
43
except Exception as e:
44
- assert "ExceptionGroup" not in str(e), f"Unexpected error: {e}"
45
- assert "ProcessLookupError" not in str(e), f"Unexpected error: {e}"
+ assert "ExceptionGroup" in repr(e), f"Unexpected error: {e}"
+ assert "ProcessLookupError" in repr(e), f"Unexpected error: {e}"
46
pytest.xfail(f"Expected error: {e}")
0 commit comments