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 c63ba3e commit bd4112fCopy full SHA for bd4112f
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
- 'record layer failure' if IS_OPENSSL3
601
- else 'wrong version number' if IS_ABOVE_OPENSSL10
602
- else 'unknown protocol'
+ 'record layer failure' 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