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.
test_wrong_cert_tls13
1 parent 33ee5cb commit a214f55Copy full SHA for a214f55
Lib/test/test_ssl.py
@@ -3169,7 +3169,9 @@ def test_wrong_cert_tls13(self):
3169
s.connect((HOST, server.port))
3170
with self.assertRaisesRegex(
3171
OSError,
3172
- '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|'
3173
+ 'closed by the remote host|Connection reset by peer|'
3174
+ 'Broken pipe'
3175
):
3176
# TLS 1.3 perform client cert exchange after handshake
3177
s.write(b'data')
0 commit comments