mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-26 09:14:27 +03:00
Removed print
This commit is contained in:
parent
a4f06b93f9
commit
d324560891
|
@ -205,11 +205,8 @@ class PillowTestCase(unittest.TestCase):
|
|||
|
||||
def skipKnownBadTest(self, msg=None):
|
||||
# Skip if PILLOW_RUN_KNOWN_BAD is not true in the environment.
|
||||
if 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")
|
||||
if not os.environ.get("PILLOW_RUN_KNOWN_BAD", False):
|
||||
self.skipTest(msg or "Known Bad Test")
|
||||
|
||||
def tempfile(self, template):
|
||||
assert template[:5] in ("temp.", "temp_")
|
||||
|
|
Loading…
Reference in New Issue
Block a user