From 77f31a91d55df2df79ac767690738081f27ad476 Mon Sep 17 00:00:00 2001 From: Steve Dower Date: Tue, 22 Feb 2022 16:25:05 +0000 Subject: [PATCH] bpo-46822: Increase timeout for test_create_server_ssl_over_ssl to match underlying timeouts (GH-31502) --- Lib/test/test_asyncio/test_ssl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_asyncio/test_ssl.py b/Lib/test/test_asyncio/test_ssl.py index 8d1bb0360934d6..67684ab09e6887 100644 --- a/Lib/test/test_asyncio/test_ssl.py +++ b/Lib/test/test_asyncio/test_ssl.py @@ -1019,7 +1019,7 @@ async def run_main(): 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