summaryrefslogtreecommitdiff
path: root/tests/system/suite_editors/tst_select_all/test.py
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@qt.io>2023-05-05 10:39:47 +0200
committerEike Ziller <eike.ziller@qt.io>2023-05-05 10:39:47 +0200
commit7724f8653f9c0e5625179ecda8a545cb30f4e1b4 (patch)
treecbe5b15de32a6df7012bafb6f4e853ab9c21c676 /tests/system/suite_editors/tst_select_all/test.py
parent15193d3250834f85d90b790c0c40632e6de65033 (diff)
parentb083a4d55efbf9f6558034c0ce4efe31062e0e5b (diff)
downloadqt-creator-7724f8653f9c0e5625179ecda8a545cb30f4e1b4.tar.gz
Merge remote-tracking branch 'origin/10.0'
Change-Id: I7a3925ad8e4f97461b64a70217102ed900430253
Diffstat (limited to 'tests/system/suite_editors/tst_select_all/test.py')
-rw-r--r--tests/system/suite_editors/tst_select_all/test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/system/suite_editors/tst_select_all/test.py b/tests/system/suite_editors/tst_select_all/test.py
index be96e8f482..bf95250cf7 100644
--- a/tests/system/suite_editors/tst_select_all/test.py
+++ b/tests/system/suite_editors/tst_select_all/test.py
@@ -8,7 +8,7 @@ source("../../shared/qtcreator.py")
def main():
files = map(lambda record: os.path.join(srcPath, testData.field(record, "filename")),
testData.dataset("files.tsv"))
- files = filter(lambda x: not x.endswith(".bin"), files)
+ files = list(filter(lambda x: not x.endswith(".bin"), files))
for currentFile in files:
if not neededFilePresent(currentFile):
return