diff --git a/testing/test_capture.py b/testing/test_capture.py index eb55093bb..4320a7cae 100644 --- a/testing/test_capture.py +++ b/testing/test_capture.py @@ -1503,11 +1503,9 @@ def test_typeerror_encodedfile_write(testdir): """ ) result_without_capture = testdir.runpytest("-s", str(p)) - result_with_capture = testdir.runpytest(str(p)) assert result_with_capture.ret == result_without_capture.ret - result_with_capture.stdout.fnmatch_lines( - ["E TypeError: write() argument must be str, not bytes"] + ["E * TypeError: write() argument must be str, not bytes"] )