summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/end2end/fixtures/quteprocess.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/end2end/fixtures/quteprocess.py b/tests/end2end/fixtures/quteprocess.py
index c80c4b5e3..b7ea27664 100644
--- a/tests/end2end/fixtures/quteprocess.py
+++ b/tests/end2end/fixtures/quteprocess.py
@@ -597,11 +597,11 @@ class QuteProc(testprocess.Process):
raise ValueError("Either both x/y or neither must be given!")
if x is None and y is None:
- point = 'qutebrowser.qt.QtCore.QPoint(*, *)' # not counting 0/0 here
+ point = '*.QtCore.QPoint(*, *)' # not counting 0/0 here
elif x == '0' and y == '0':
- point = 'qutebrowser.qt.QtCore.QPoint()'
+ point = '*.QtCore.QPoint()'
else:
- point = 'qutebrowser.qt.QtCore.QPoint({}, {})'.format(x, y)
+ point = '*.QtCore.QPoint({}, {})'.format(x, y)
self.wait_for(category='webview',
message='Scroll position changed to ' + point)