Kaydet (Commit) 22dae28c authored tarafından Jeremy Hylton's avatar Jeremy Hylton

Add a missing call to _strclass().

üst cba6e969
......@@ -192,7 +192,7 @@ class TestCase:
return "%s.%s" % (_strclass(self.__class__), self.__testMethodName)
def __str__(self):
return "%s (%s)" % (self.__testMethodName, self.__class__)
return "%s (%s)" % (self.__testMethodName, _strclass(self.__class__))
def __repr__(self):
return "<%s testMethod=%s>" % \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment