summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Loehning <robert.loehning@qt.io>2017-03-03 13:41:37 +0100
committerRobert Loehning <robert.loehning@qt.io>2017-03-03 15:19:16 +0000
commit785a982a6411a784e220cba4692c0a4f529f0ca4 (patch)
tree8bb15a7b862a5cdd4586baaaddb492c66b6cc128
parent77cf864e89abb8253a6ab240dbb0d1df180519ba (diff)
downloadqt-creator-785a982a6411a784e220cba4692c0a4f529f0ca4.tar.gz
Squish: Protect ALL_TARGETS against accidental changes
Change-Id: I45efe55b87fb1e02e1b4016c9d94353c1823604a Reviewed-by: Christian Stenger <christian.stenger@qt.io>
-rw-r--r--tests/system/shared/classes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/system/shared/classes.py b/tests/system/shared/classes.py
index fa8549b12c..0cc851960b 100644
--- a/tests/system/shared/classes.py
+++ b/tests/system/shared/classes.py
@@ -28,7 +28,7 @@ import operator
# for easier re-usage (because Python hasn't an enum type)
class Targets:
- ALL_TARGETS = map(lambda x: 2 ** x , range(6))
+ ALL_TARGETS = tuple(map(lambda x: 2 ** x , range(6)))
(DESKTOP_474_GCC,
DESKTOP_480_DEFAULT,