mirror of
https://github.com/python/cpython.git
synced 2024-11-24 10:24:35 +08:00
Add a missing call to _strclass().
This commit is contained in:
parent
cba6e96929
commit
22dae28c1a
@ -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>" % \
|
||||
|
Loading…
Reference in New Issue
Block a user