mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
bpo-38614: Use test.support.LONG_TIMEOUT constant (GH-17562)
Replace hardcoded timeout constants in tests with LONG_TIMEOUT of test.support, so it's easier to ajdust this timeout for all tests at once. LONG_TIMEOUT is 5 minutes by default, but it can be longer depending on --timeout command line option.
This commit is contained in:
parent
bbc8b7965b
commit
c98b0199a9
3 changed files with 6 additions and 5 deletions
|
@ -1059,8 +1059,8 @@ if hasattr(socket, "AF_UNIX"):
|
|||
# - end of server_helper section
|
||||
|
||||
class SMTPHandlerTest(BaseTest):
|
||||
# bpo-14314, bpo-19665, bpo-34092: don't wait forever, timeout of 1 minute
|
||||
TIMEOUT = 60.0
|
||||
# bpo-14314, bpo-19665, bpo-34092: don't wait forever
|
||||
TIMEOUT = support.LONG_TIMEOUT
|
||||
|
||||
def test_basic(self):
|
||||
sockmap = {}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue