mirror of
https://github.com/python/cpython.git
synced 2025-07-24 03:35:53 +00:00
Correct typo in min version test (GH-16001)
Signed-off-by: Christian Heimes <christian@python.org>
(cherry picked from commit de606ea169
)
Co-authored-by: Christian Heimes <christian@python.org>
This commit is contained in:
parent
f79a022d76
commit
8af4e0c994
1 changed files with 1 additions and 1 deletions
|
@ -3730,7 +3730,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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue