Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 77f31a9

Browse files
authored
bpo-46822: Increase timeout for test_create_server_ssl_over_ssl to match underlying timeouts (GH-31502)
1 parent 1320d56 commit 77f31a9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/test/test_asyncio/test_ssl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1019,7 +1019,7 @@ async def run_main():
10191019
def test_create_server_ssl_over_ssl(self):
10201020
CNT = 0 # number of clients that were successful
10211021
TOTAL_CNT = 25 # total number of clients that test will create
1022-
TIMEOUT = 10.0 # timeout for this test
1022+
TIMEOUT = 30.0 # timeout for this test
10231023

10241024
A_DATA = b'A' * 1024 * 1024
10251025
B_DATA = b'B' * 1024 * 1024

0 commit comments

Comments
 (0)