aboutsummaryrefslogtreecommitdiffstats
path: root/tests/system/suite_editors/tst_clean_whitespaces/test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/system/suite_editors/tst_clean_whitespaces/test.py')
-rw-r--r--tests/system/suite_editors/tst_clean_whitespaces/test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/system/suite_editors/tst_clean_whitespaces/test.py b/tests/system/suite_editors/tst_clean_whitespaces/test.py
index cdf2add27c..6dab4720f9 100644
--- a/tests/system/suite_editors/tst_clean_whitespaces/test.py
+++ b/tests/system/suite_editors/tst_clean_whitespaces/test.py
@@ -12,7 +12,7 @@ TripleTab = '\t\t\t'
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