diff options
author | bashonly <88596187+bashonly@users.noreply.github.com> | 2023-12-20 13:03:54 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-20 19:03:54 +0000 |
commit | 37755a037e612bfc608c3d4722e8ef2ce6a022ee (patch) | |
tree | 9f55fcd0249992de0fe3ec9bd2f635614ffceeb5 /test/test_networking.py | |
parent | 196eb0fe77b78e2e5ca02c506c3837c2b1a7964c (diff) |
[test:networking] Update tests for OpenSSL 3.2 (#8814)
Authored by: bashonly
Diffstat (limited to 'test/test_networking.py')
-rw-r--r-- | test/test_networking.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_networking.py b/test/test_networking.py index 64af6e459..dc60ca699 100644 --- a/test/test_networking.py +++ b/test/test_networking.py @@ -328,7 +328,7 @@ class TestHTTPRequestHandler(TestRequestHandlerBase): https_server_thread.start() with handler(verify=False) as rh: - with pytest.raises(SSLError, match='sslv3 alert handshake failure') as exc_info: + with pytest.raises(SSLError, match=r'ssl(?:v3|/tls) alert handshake failure') as exc_info: validate_and_send(rh, Request(f'https://127.0.0.1:{https_port}/headers')) assert not issubclass(exc_info.type, CertificateVerifyError) |