]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-46822: Increase timeout for test_create_server_ssl_over_ssl to match underlying...
authorSteve Dower <steve.dower@python.org>
Tue, 22 Feb 2022 16:25:05 +0000 (16:25 +0000)
committerGitHub <noreply@github.com>
Tue, 22 Feb 2022 16:25:05 +0000 (16:25 +0000)
Lib/test/test_asyncio/test_ssl.py

index 8d1bb0360934d6bf3c7e23838fd9d10fac08b924..67684ab09e688717a5106fca35b7c4002be908ef 100644 (file)
@@ -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