mirror of https://github.com/python/cpython.git
Add a missing call to _strclass().
This commit is contained in:
parent
cba6e96929
commit
22dae28c1a
|
@ -192,7 +192,7 @@ def id(self):
|
|||
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