From: Steve Dower Date: Tue, 22 Feb 2022 16:25:05 +0000 (+0000) Subject: bpo-46822: Increase timeout for test_create_server_ssl_over_ssl to match underlying... X-Git-Tag: v3.11.0a6~135 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=77f31a91d55df2df79ac767690738081f27ad476;p=thirdparty%2FPython%2Fcpython.git bpo-46822: Increase timeout for test_create_server_ssl_over_ssl to match underlying timeouts (GH-31502) --- diff --git a/Lib/test/test_asyncio/test_ssl.py b/Lib/test/test_asyncio/test_ssl.py index 8d1bb0360934..67684ab09e68 100644 --- a/Lib/test/test_asyncio/test_ssl.py +++ b/Lib/test/test_asyncio/test_ssl.py @@ -1019,7 +1019,7 @@ class TestSSL(test_utils.TestCase): def test_create_server_ssl_over_ssl(self): CNT = 0 # number of clients that were successful TOTAL_CNT = 25 # total number of clients that test will create - TIMEOUT = 10.0 # timeout for this test + TIMEOUT = 30.0 # timeout for this test A_DATA = b'A' * 1024 * 1024 B_DATA = b'B' * 1024 * 1024