summaryrefslogtreecommitdiff
path: root/testsuite.py
diff options
context:
space:
mode:
authorUlf Magnusson <ulfalizer@gmail.com>2017-11-04 12:51:11 +0100
committerUlf Magnusson <ulfalizer@gmail.com>2017-11-04 12:51:11 +0100
commit419f1bc50a04500761290d27c050996f9ba39e94 (patch)
tree723c1cdc4d40e155dea69d67d791343cf3e548fd /testsuite.py
parentb3a9656937b18fae57a5ed53c8528bd1339cfd8d (diff)
Fix test suite Python 3 syntax error
"List comprehensions no longer support the...", https://docs.python.org/3.0/whatsnew/3.0.html
Diffstat (limited to 'testsuite.py')
-rw-r--r--testsuite.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite.py b/testsuite.py
index de1967b..b23ef23 100644
--- a/testsuite.py
+++ b/testsuite.py
@@ -1187,7 +1187,7 @@ g
c.disable_warnings()
syms = [c.syms[name] for name in
- "BOOL", "TRISTATE", "STRING", "INT", "HEX"]
+ ("BOOL", "TRISTATE", "STRING", "INT", "HEX")]
for sym in syms:
verify(sym.user_value is None,