From 419f1bc50a04500761290d27c050996f9ba39e94 Mon Sep 17 00:00:00 2001 From: Ulf Magnusson Date: Sat, 4 Nov 2017 12:51:11 +0100 Subject: Fix test suite Python 3 syntax error "List comprehensions no longer support the...", https://docs.python.org/3.0/whatsnew/3.0.html --- testsuite.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'testsuite.py') 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, -- cgit v1.2.3