mirror of
https://github.com/python/cpython.git
synced 2025-08-27 20:25:18 +00:00
Add a missing call to _strclass().
This commit is contained in:
parent
cba6e96929
commit
22dae28c1a
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue