Correct typo in min version test (GH-16000)

Signed-off-by: Christian Heimes <christian@python.org>
This commit is contained in:
Christian Heimes 2019-09-11 19:48:58 +02:00 committed by T. Wouters
parent 15f5a7527b
commit de606ea169
1 changed files with 1 additions and 1 deletions

View File

@ -3735,7 +3735,7 @@ class ThreadedTests(unittest.TestCase):
server_context.maximum_version = ssl.TLSVersion.TLSv1_2
server_context.minimum_version = ssl.TLSVersion.TLSv1_2
client_context.maximum_version = ssl.TLSVersion.TLSv1
client_context.maximum_version = ssl.TLSVersion.TLSv1
client_context.minimum_version = ssl.TLSVersion.TLSv1
with ThreadedEchoServer(context=server_context) as server:
with client_context.wrap_socket(socket.socket(),
server_hostname=hostname) as s: