Remove unused PillowTestCase.__str__

With the move to pytest, the class's string method is unused. pytest has
its own test progress outputter.
This commit is contained in:
Jon Dufresne 2019-01-06 15:17:54 -08:00
parent b97f9c4fcf
commit 8a05aae988

View File

@ -53,10 +53,6 @@ class PillowTestCase(unittest.TestCase):
# holds last result object passed to run method:
self.currentResult = None
# Nicer output for --verbose
def __str__(self):
return self.__class__.__name__ + "." + self._testMethodName
def run(self, result=None):
self.currentResult = result # remember result for use later
unittest.TestCase.run(self, result) # call superclass run method