Removed print

This commit is contained in:
Andrew Murray 2020-01-14 19:44:10 +11:00
parent a4f06b93f9
commit d324560891

View File

@ -205,10 +205,7 @@ class PillowTestCase(unittest.TestCase):
def skipKnownBadTest(self, msg=None): def skipKnownBadTest(self, msg=None):
# Skip if PILLOW_RUN_KNOWN_BAD is not true in the environment. # Skip if PILLOW_RUN_KNOWN_BAD is not true in the environment.
if os.environ.get("PILLOW_RUN_KNOWN_BAD", False): if not os.environ.get("PILLOW_RUN_KNOWN_BAD", False):
print(os.environ.get("PILLOW_RUN_KNOWN_BAD", False))
return
self.skipTest(msg or "Known Bad Test") self.skipTest(msg or "Known Bad Test")
def tempfile(self, template): def tempfile(self, template):