diff --git a/tests/integration/test_testprocess.py b/tests/integration/test_testprocess.py index 830f0ff41..9c10923af 100644 --- a/tests/integration/test_testprocess.py +++ b/tests/integration/test_testprocess.py @@ -163,7 +163,7 @@ class TestEnsureNotLogged: pyproc.code = "time.sleep(0.5); print('blacklisted')" pyproc.start() with pytest.raises(testprocess.BlacklistedMessageError): - pyproc.ensure_not_logged(data='blacklisted', delay=1000) + pyproc.ensure_not_logged(data='blacklisted', delay=5000) def test_no_matching_message(self, pyproc): pyproc.code = "print('blacklisted... nope!')"