From db7de0d61992ab78413fe6843fdfb327026568f0 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Tue, 6 Sep 2016 15:50:36 +0200 Subject: [PATCH] tests: Set waited_for for initial about:blank load Otherwise, subsequent lines where we wait for about:blank will fall back on the older one and not actually wait. --- tests/end2end/fixtures/quteprocess.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/end2end/fixtures/quteprocess.py b/tests/end2end/fixtures/quteprocess.py index f3c4ffb62..57aa6a5b1 100644 --- a/tests/end2end/fixtures/quteprocess.py +++ b/tests/end2end/fixtures/quteprocess.py @@ -213,6 +213,7 @@ class QuteProc(testprocess.Process): elif (log_line.category == 'webview' and testutils.pattern_match(pattern=start_okay_message_load, value=log_line.message)): + log_line.waited_for = True self._is_ready('load') elif (log_line.category == 'misc' and testutils.pattern_match(pattern=start_okay_message_focus,