aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert Loehning <robert.loehning@qt.io>2018-04-16 14:40:59 +0200
committerRobert Loehning <robert.loehning@qt.io>2018-04-17 11:57:39 +0000
commit3eeaf965e8f7fb00044a623c2236cab803abb2b4 (patch)
tree55bd4d4fb908492dfa94c673d00cc3a7d3238494
parentd21c508b0abd67321c4c01d4a5ac23c10891272b (diff)
Squish: Fix property name in tst_WELP03
Squish 6.2 still accepts both property names but Squish 6.3 is more strict. Change-Id: I390af974425242d1f766853b80870dcb1948ef92 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
-rw-r--r--tests/system/suite_WELP/tst_WELP03/test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/system/suite_WELP/tst_WELP03/test.py b/tests/system/suite_WELP/tst_WELP03/test.py
index 34d0de76aa..b6d4e1c940 100644
--- a/tests/system/suite_WELP/tst_WELP03/test.py
+++ b/tests/system/suite_WELP/tst_WELP03/test.py
@@ -80,7 +80,7 @@ def main():
expect = (("QTableView", "unnamed='1' visible='1' window=':Qt Creator_Core::Internal::MainWindow'",
"examples list"),
("QLineEdit", "placeholderText='Search in Examples...'", "examples search line edit"),
- ("QComboBox", "text~='.*Qt.*' visible='1'", "Qt version combo box"))
+ ("QComboBox", "currentText~='.*Qt.*' visible='1'", "Qt version combo box"))
search = "{type='%s' %s}"
test.verify(all(map(checkIfObjectExists, (search % (exp[0], exp[1]) for exp in expect))),
"Verifying: 'Examples' topic is opened and the examples are shown.")