diff options
Diffstat (limited to 'Lib/unittest.py')
-rw-r--r-- | Lib/unittest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/unittest.py b/Lib/unittest.py index 72414fa388..c3faa10e3f 100644 --- a/Lib/unittest.py +++ b/Lib/unittest.py @@ -443,7 +443,7 @@ class TestLoader: if not isinstance(test, TestCase) and \ not isinstance(test, TestSuite): raise ValueError, \ - "calling %s returned %s, not a test" % obj,test + "calling %s returned %s, not a test" % (obj,test) return test else: raise ValueError, "don't know how to make test from: %s" % obj |