aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert Loehning <robert.loehning@qt.io>2017-12-11 17:27:01 +0100
committerRobert Loehning <robert.loehning@qt.io>2017-12-12 09:19:02 +0000
commit5ca3f52b4b3607bad0053ff0ec530387a7d4d4b9 (patch)
treec9e8753b2a8951d0b8940ad905058aa59e4c0261
parent372d37d40af813b77507c69eb955b9517c5d978b (diff)
Squish: Fix property name
...to the correct capitalization. Squish < 6.3 could handle both, whereas Squish >= 6.3 is more strict. Change-Id: I9864518e21d3f2ed44fe7527f75aa958dc0081de Reviewed-by: Christian Stenger <christian.stenger@qt.io>
-rwxr-xr-xtests/system/suite_HELP/tst_HELP02/test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/system/suite_HELP/tst_HELP02/test.py b/tests/system/suite_HELP/tst_HELP02/test.py
index e3fc68cb40..9332268cc9 100755
--- a/tests/system/suite_HELP/tst_HELP02/test.py
+++ b/tests/system/suite_HELP/tst_HELP02/test.py
@@ -73,7 +73,7 @@ def setKeyboardShortcutForAboutQtC():
clickOnTab(":Options.qt_tabwidget_tabbar_QTabBar", "Keyboard")
filter = waitForObject("{container={title='Keyboard Shortcuts' type='QGroupBox' unnamed='1' "
"visible='1'} type='Utils::FancyLineEdit' unnamed='1' visible='1' "
- "placeHolderText='Filter'}")
+ "placeholderText='Filter'}")
replaceEditorContent(filter, "about")
treewidget = waitForObject("{type='QTreeWidget' unnamed='1' visible='1'}")
modelIndex = waitForObject("{column='0' text='AboutQtCreator' type='QModelIndex' "
@@ -84,7 +84,7 @@ def setKeyboardShortcutForAboutQtC():
record = waitForObject("{container=%s type='Core::Internal::ShortcutButton' unnamed='1' "
"visible='1' text~='(Stop Recording|Record)'}" % shortcutGB)
shortcut = ("{container=%s type='Utils::FancyLineEdit' unnamed='1' visible='1' "
- "placeHolderText='Enter key sequence as text'}" % shortcutGB)
+ "placeholderText='Enter key sequence as text'}" % shortcutGB)
clickButton(record)
nativeType("<Ctrl+Alt+a>")
clickButton(record)