aboutsummaryrefslogtreecommitdiffstats
path: root/tests/system/suite_HELP/tst_HELP02/test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/system/suite_HELP/tst_HELP02/test.py')
-rw-r--r--tests/system/suite_HELP/tst_HELP02/test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/system/suite_HELP/tst_HELP02/test.py b/tests/system/suite_HELP/tst_HELP02/test.py
index 3601c81a37b..7cacdf6e515 100644
--- a/tests/system/suite_HELP/tst_HELP02/test.py
+++ b/tests/system/suite_HELP/tst_HELP02/test.py
@@ -36,7 +36,7 @@ def checkQtCreatorHelpVersion(expectedVersion):
helpContentWidget = waitForObject(':Qt Creator_QHelpContentWidget', 5000)
waitFor("any(map(rightStart, dumpItems(helpContentWidget.model())))", 10000)
items = dumpItems(helpContentWidget.model())
- test.compare(filter(rightStart, items)[0],
+ test.compare(list(filter(rightStart, items))[0],
'Qt Creator Manual %s' % expectedVersion,
'Verifying whether manual uses expected version.')
except: