summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorRobert Loehning <robert.loehning@qt.io>2020-04-17 18:33:21 +0200
committerRobert Loehning <robert.loehning@qt.io>2020-04-21 10:04:35 +0000
commitfd17810e82a09bda4f85ddd9625096e77959bf23 (patch)
tree73abb9d0046b9d05771d4888ea2358b1f58d8be8 /tests
parent7c95e17436d68f43e9b9d2e9e5a5bc2bdcb8bfb9 (diff)
downloadqt-creator-fd17810e82a09bda4f85ddd9625096e77959bf23.tar.gz
Squish: Don't use negative y-position for QMouseEvent
Change-Id: Ib453b41e5906ddf24228b92f8c904b39eea4526f Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'tests')
-rw-r--r--tests/system/shared/editor_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/system/shared/editor_utils.py b/tests/system/shared/editor_utils.py
index 34b1eca7c8..52430e7021 100644
--- a/tests/system/shared/editor_utils.py
+++ b/tests/system/shared/editor_utils.py
@@ -160,7 +160,7 @@ def verifyHoveringOnEditor(editor, lines, additionalKeyPresses, expectedTypes, e
__handleTextTips__(tip, expectedVals, altVal)
elif expectedType == "WidgetTip":
__handleWidgetTips__(tip, expectedVals)
- sendEvent("QMouseEvent", editor, QEvent.MouseMove, 0, -50, Qt.NoButton, 0)
+ sendEvent("QMouseEvent", editor, QEvent.MouseMove, 0, 0, Qt.NoButton, 0)
waitFor("isNull(tip)", 10000)
# helper function that handles verification of TextTip hoverings