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 b7cc092 commit 5e14dbcCopy full SHA for 5e14dbc
cheroot/test/test_ssl.py
@@ -597,9 +597,9 @@ def test_https_over_http_error(http_server, ip_addr):
597
),
598
).request('GET', '/')
599
expected_substring = (
600
- '[SSL] record layer failure (_ssl.c:1000)' if IS_OPENSSL3
601
- else 'wrong version number' if IS_ABOVE_OPENSSL10
602
- else 'unknown protocol'
+ '[SSL] record layer failure (_ssl.c:1000)' if IS_OPENSSL3
+ else 'wrong version number' if IS_ABOVE_OPENSSL10
+ else 'unknown protocol'
603
)
604
assert expected_substring in ssl_err.value.args[-1]
605
0 commit comments