diff options
| author | Ulf Magnusson <ulfalizer@gmail.com> | 2015-06-08 23:24:07 +0200 |
|---|---|---|
| committer | Ulf Magnusson <ulfalizer@gmail.com> | 2015-06-08 23:25:03 +0200 |
| commit | 27d572b59f1f57d4ec51a1c0b6b9be78b801f92a (patch) | |
| tree | 1b2f533af08194e611561d9779f927c79ac803a3 | |
| parent | e645142fb95a4ca8c0c21186152fa487b1001a47 (diff) | |
Remove unused .format() argument in test suite.
| -rw-r--r-- | testsuite.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite.py b/testsuite.py index c8ce43a..2cef8e7 100644 --- a/testsuite.py +++ b/testsuite.py @@ -275,7 +275,7 @@ def run_selftests(): "get_lower_bound() thinks there should be no " "assignable values for the bool/tristate {0} but " "is_modifiable() thinks it should be modifiable". - format(sym_name, vals)) + format(sym_name)) else: tri_to_int = { "n" : 0, "m" : 1, "y" : 2 } bound_range = ["n", "m", "y"][tri_to_int[sym_low] : |
