diff --git a/tests/system/suite_editors/tst_qml_editor/test.py b/tests/system/suite_editors/tst_qml_editor/test.py index d1afac43fe6d5749458fb1f276ee9a4dee56720a..3772a69a4c5b11752102d75966df4d559f165e9c 100644 --- a/tests/system/suite_editors/tst_qml_editor/test.py +++ b/tests/system/suite_editors/tst_qml_editor/test.py @@ -132,9 +132,9 @@ def testHovering(): expectedTypes = ["TextTip", "TextTip"] expectedValues = [ {'text':'
FocusScope\n

The FocusScope object explicitly ' - 'creates a focus scope.

  
'}, + 'creates a focus scope.

  '}, {'text':'
Rectangle\n

The Rectangle item provides a filled rectangle with an ' - 'optional border.

  
'} + 'optional border.

  '} ] alternativeValues = [{"text":"FocusScope"}, {"text":"Rectangle"}] verifyHoveringOnEditor(editor, lines, additionalKeyPresses, expectedTypes, expectedValues, alternativeValues) @@ -147,14 +147,14 @@ def testHovering(): {'text':'
boolean

This property indicates whether the item has focus ' 'within the enclosing focus scope. If true, this item will gain active focus when the enclosing ' 'focus scope gains active focus. In the following example, input will be given active focus ' - 'when scope gains active focus.

  scope gains active focus.

  
'}, {'text':'
string

This property holds the color used to fill the rectangle.' - '

  
'}, + '

  '}, {'text':'
State

This property holds a list of states defined by the item.' - '

  
'}, + '

  '}, {'text':'
Transition

This property holds a list of transitions defined by ' - 'the item.

  
'} + 'the item.

  '} ] alternativeValues = [{"text":"boolean"}, {"text":"string"}, {"text":"State"}, {"text":"Transition"}] verifyHoveringOnEditor(editor, lines, additionalKeyPresses, expectedTypes, expectedValues, alternativeValues)