From db1b20856b3837a844ffd554d053ff8fb67eaad5 Mon Sep 17 00:00:00 2001 From: Sam Gross Date: Tue, 2 Apr 2024 16:05:59 -0400 Subject: [PATCH] gh-117483: Accept "Broken pipe" as valid error message in `test_wrong_cert_tls13` On macOS, the closed connection can lead to a "Broken pipe" error instead of a "Connection reset by peer" error. --- Lib/test/test_ssl.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Lib/test/test_ssl.py b/Lib/test/test_ssl.py index 794944afd66dd0..0e50d09c8f28d6 100644 --- a/Lib/test/test_ssl.py +++ b/Lib/test/test_ssl.py @@ -3169,7 +3169,9 @@ def test_wrong_cert_tls13(self): s.connect((HOST, server.port)) with self.assertRaisesRegex( OSError, - 'alert unknown ca|EOF occurred|TLSV1_ALERT_UNKNOWN_CA|closed by the remote host|Connection reset by peer' + 'alert unknown ca|EOF occurred|TLSV1_ALERT_UNKNOWN_CA|' + 'closed by the remote host|Connection reset by peer|' + 'Broken pipe' ): # TLS 1.3 perform client cert exchange after handshake s.write(b'data')