Increase some more timeouts

This commit is contained in:
Kovid Goyal
2022-11-03 13:13:14 +05:30
parent dea3df66f8
commit 9d471782dd
2 changed files with 2 additions and 2 deletions

View File

@@ -81,7 +81,7 @@ def test_spawn() -> None:
q = ctx.Queue()
p = ctx.Process(target=q.put, args=('hello',))
p.start()
x = q.get(timeout=2)
x = q.get(timeout=8)
assert x == 'hello'
p.join()
finally: