diff options
| author | Ulf Magnusson <ulfalizer@gmail.com> | 2017-11-04 12:51:11 +0100 |
|---|---|---|
| committer | Ulf Magnusson <ulfalizer@gmail.com> | 2017-11-04 12:51:11 +0100 |
| commit | 419f1bc50a04500761290d27c050996f9ba39e94 (patch) | |
| tree | 723c1cdc4d40e155dea69d67d791343cf3e548fd | |
| parent | b3a9656937b18fae57a5ed53c8528bd1339cfd8d (diff) | |
Fix test suite Python 3 syntax error
"List comprehensions no longer support the...",
https://docs.python.org/3.0/whatsnew/3.0.html
| -rw-r--r-- | testsuite.py | 2 |
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, |
