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 081043d commit 0a7a893Copy full SHA for 0a7a893
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_ABOVE_OPENSSL31
601
- else 'wrong version number' if IS_ABOVE_OPENSSL10
602
- else 'unknown protocol'
+ 'record layer failure' if IS_ABOVE_OPENSSL31
+ 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