diff options
author | Steve Dower <steve.dower@python.org> | 2022-02-22 16:25:05 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-22 16:25:05 (GMT) |
commit | 77f31a91d55df2df79ac767690738081f27ad476 (patch) | |
tree | 88d6b8eceaecd92f83b9875582318fb4162ed486 | |
parent | 1320d56ff73af290775d6ca5749ecd3ac5b67158 (diff) | |
download | cpython-77f31a91d55df2df79ac767690738081f27ad476.zip cpython-77f31a91d55df2df79ac767690738081f27ad476.tar.gz cpython-77f31a91d55df2df79ac767690738081f27ad476.tar.bz2 |
bpo-46822: Increase timeout for test_create_server_ssl_over_ssl to match underlying timeouts (GH-31502)
-rw-r--r-- | Lib/test/test_asyncio/test_ssl.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_asyncio/test_ssl.py b/Lib/test/test_asyncio/test_ssl.py index 8d1bb03..67684ab 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 |