diff options
author | Victor Stinner <vstinner@python.org> | 2023-09-22 01:13:31 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-22 01:13:31 (GMT) |
commit | 1eb1b45183c3b8aeefe3d5d27694155741e82bbc (patch) | |
tree | 6d64120f03142045dcd2032e0bba4e11ce2ff062 /Lib/test/test_concurrent_futures | |
parent | 4230d7ce93cc25e9c5fb564a0b37e93f19ca0e4e (diff) | |
download | cpython-1eb1b45183c3b8aeefe3d5d27694155741e82bbc.zip cpython-1eb1b45183c3b8aeefe3d5d27694155741e82bbc.tar.gz cpython-1eb1b45183c3b8aeefe3d5d27694155741e82bbc.tar.bz2 |
gh-109702: Increase concurrent_futures deadlock timeout (#109703)
Replace SHORT_TIMEOUT with LONG_TIMEOUT in test_deadlock of
test_concurrent_futures.
Diffstat (limited to 'Lib/test/test_concurrent_futures')
-rw-r--r-- | Lib/test/test_concurrent_futures/test_deadlock.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_concurrent_futures/test_deadlock.py b/Lib/test/test_concurrent_futures/test_deadlock.py index baac2b5..1675a55 100644 --- a/Lib/test/test_concurrent_futures/test_deadlock.py +++ b/Lib/test/test_concurrent_futures/test_deadlock.py @@ -88,7 +88,7 @@ class ErrorAtUnpickle(object): class ExecutorDeadlockTest: - TIMEOUT = support.SHORT_TIMEOUT + TIMEOUT = support.LONG_TIMEOUT def _fail_on_deadlock(self, executor): # If we did not recover before TIMEOUT seconds, consider that the |