Skip to content

Commit ce04e71

Browse files
authored
bpo-41561: skip test_min_max_version_mismatch (pythonGH-22308)
skip test_min_max_version_mismatch when TLS 1.0 is not available Signed-off-by: Christian Heimes <christian@python.org>
1 parent ccdcb20 commit ce04e71

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

Lib/test/test_ssl.py

+1
Original file line numberDiff line numberDiff line change
@@ -3854,6 +3854,7 @@ def test_min_max_version_tlsv1_1(self):
38543854

38553855
@requires_minimum_version
38563856
@requires_tls_version('TLSv1_2')
3857+
@requires_tls_version('TLSv1')
38573858
def test_min_max_version_mismatch(self):
38583859
client_context, server_context, hostname = testing_context()
38593860
# client 1.0, server 1.2 (mismatch)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
test_ssl: skip test_min_max_version_mismatch when TLS 1.0 is not available

0 commit comments

Comments
 (0)