gh-109702: Increase concurrent_futures deadlock timeout (#109703)

Replace SHORT_TIMEOUT with LONG_TIMEOUT in test_deadlock of
test_concurrent_futures.
This commit is contained in:
Victor Stinner 2023-09-22 03:13:31 +02:00 committed by GitHub
parent 4230d7ce93
commit 1eb1b45183
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ class ErrorAtUnpickle(object):
class ExecutorDeadlockTest: class ExecutorDeadlockTest:
TIMEOUT = support.SHORT_TIMEOUT TIMEOUT = support.LONG_TIMEOUT
def _fail_on_deadlock(self, executor): def _fail_on_deadlock(self, executor):
# If we did not recover before TIMEOUT seconds, consider that the # If we did not recover before TIMEOUT seconds, consider that the