From 1ebb72b47f95bf34da6b3dc9883366e642849058 Mon Sep 17 00:00:00 2001 From: Robert Loehning Date: Tue, 11 Feb 2020 14:30:19 +0100 Subject: [PATCH] Squish: Update expected tooltips Change-Id: I88c5757b1f3beda34773ec3738779094a8441c2f Reviewed-by: Christian Stenger --- tests/system/suite_editors/tst_qml_editor/test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/system/suite_editors/tst_qml_editor/test.py b/tests/system/suite_editors/tst_qml_editor/test.py index 633e9fcbdc1..56179134cbd 100644 --- a/tests/system/suite_editors/tst_qml_editor/test.py +++ b/tests/system/suite_editors/tst_qml_editor/test.py @@ -157,7 +157,7 @@ def testHovering(): if JIRA.isBugStillOpen(20020): expectedValues[0] = {'text':'
Rectangle  ' '
'} - alternativeValues[0] = {"text":"

Rectangle

"} + alternativeValues[0] = {"text":"Rectangle"} verifyHoveringOnEditor(editor, lines, additionalKeyPresses, expectedTypes, expectedValues, alternativeValues) test.log("Testing hovering expressions") openDocument(focusDocumentPath % "focus\\.qml") @@ -174,5 +174,5 @@ def testHovering(): additionalKeyPresses = ["", "", "", ""] expectedTypes = ["ColorTip", "TextTip"] expectedValues = ["#D1DBBD", {"text":'
number  
'}] - alternativeValues = ["#D6DBBD", {"text":"

number

"}] + alternativeValues = ["#D6DBBD", {"text":"number"}] verifyHoveringOnEditor(editor, lines, additionalKeyPresses, expectedTypes, expectedValues, alternativeValues)