aboutsummaryrefslogtreecommitdiffstats
path: root/tests/system/suite_editors/tst_select_all/test.py
diff options
context:
space:
mode:
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