From dfcd3087c259acd970012328bd558fcc265fcdec Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Mon, 18 Jan 2016 23:00:41 +0100 Subject: [PATCH] Increase timeout for test_quteprocess_quitting. --- tests/integration/test_quteprocess.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/test_quteprocess.py b/tests/integration/test_quteprocess.py index acb99aa65..2e93dbd4d 100644 --- a/tests/integration/test_quteprocess.py +++ b/tests/integration/test_quteprocess.py @@ -71,7 +71,7 @@ def test_qt_log_ignore(qtbot, quteproc): def test_quteprocess_quitting(qtbot, quteproc_process): """When qutebrowser quits, after_test should fail.""" - with qtbot.waitSignal(quteproc_process.proc.finished, timeout=5000): + with qtbot.waitSignal(quteproc_process.proc.finished, timeout=15000): quteproc_process.send_cmd(':quit') with pytest.raises(testprocess.ProcessExited): quteproc_process.after_test()