summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/AS/nasm.py2
-rw-r--r--test/QT/QTFLAGS.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/AS/nasm.py b/test/AS/nasm.py
index b436a75..1733789 100644
--- a/test/AS/nasm.py
+++ b/test/AS/nasm.py
@@ -69,7 +69,7 @@ else:
# anyway...).
nasm_format = 'elf'
format_map = {}
-for k, v in list(format_map.items()):
+for k, v in format_map.items():
if sys.platform.find(k) != -1:
nasm_format = v
break
diff --git a/test/QT/QTFLAGS.py b/test/QT/QTFLAGS.py
index e29ee80..f6aa00f 100644
--- a/test/QT/QTFLAGS.py
+++ b/test/QT/QTFLAGS.py
@@ -147,7 +147,7 @@ test.must_exist(['work1', 'mmmmocFromH.cxx'],
['work1', 'mmmanother_ui_file.cxx'])
def _flagTest(test,fileToContentsStart):
- for f,c in list(fileToContentsStart.items()):
+ for f,c in fileToContentsStart.items():
if test.read(test.workpath('work1', f)).find(c) != 0:
return 1
return 0