disable intentionally failing tests

This commit is contained in:
wiredfool 2017-11-25 11:01:33 +00:00
parent 5a8fd796e9
commit 9a7fbdf323

View File

@ -4,12 +4,12 @@ from PIL import Image
class TestUploader(PillowTestCase):
def test_upload_equal(self):
def check_upload_equal(self):
result = hopper('P').convert('RGB')
target = hopper('RGB')
self.assert_image_equal(result, target)
def test_upload_similar(self):
def check_upload_similar(self):
result = hopper('P').convert('RGB')
target = hopper('RGB')
self.assert_image_similar(result, target, 0)