From aa0d0ccb5db7f5278b8dbeb2115a6e9bc4fb9b25 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Tue, 26 May 2020 14:29:59 +0200 Subject: tests: Try increasing file_updated timeout See https://github.com/qutebrowser/qutebrowser/issues/5390#issuecomment-631066927 --- tests/unit/misc/test_editor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/misc/test_editor.py b/tests/unit/misc/test_editor.py index edd32b5a5..5fb4478a7 100644 --- a/tests/unit/misc/test_editor.py +++ b/tests/unit/misc/test_editor.py @@ -167,7 +167,7 @@ class TestFileHandling: def test_backup(self, qtbot, message_mock): editor = editormod.ExternalEditor(watch=True) editor.edit('foo') - with qtbot.wait_signal(editor.file_updated): + with qtbot.wait_signal(editor.file_updated, timeout=5000): _update_file(editor._filename, 'bar') editor.backup() -- cgit v1.2.3-54-g00ecf