diff --git a/tests/test_multiprocessing.py b/tests/test_multiprocessing.py index bfa5772..b0afe14 100644 --- a/tests/test_multiprocessing.py +++ b/tests/test_multiprocessing.py @@ -59,7 +59,7 @@ def test_queue(self): 6. The main process retrieves the correct value from queue `w` and matches it against expected result. """ def getxy(_q, _w): - _cfg = _q.get_nowait() + _cfg = _q.get(timeout=5) _w.put(_cfg.x.y) cfg = ini.INIConfig() cfg.x.y = '42'