diff options
Diffstat (limited to 'tests/test_concurrency.py')
-rw-r--r-- | tests/test_concurrency.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_concurrency.py b/tests/test_concurrency.py index 682e3cf0..0b8d6a8b 100644 --- a/tests/test_concurrency.py +++ b/tests/test_concurrency.py @@ -336,8 +336,8 @@ MULTI_CODE = """ def process_worker_main(args): # Need to pause, or the tasks go too quickly, and some processes # in the pool don't get any work, and then don't record data. - time.sleep(0.02) ret = work(*args) + time.sleep(0.1) return os.getpid(), ret if __name__ == "__main__": # pragma: no branch |