mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-02-03 21:24:31 +03:00
disable intentionally failing tests
This commit is contained in:
parent
5a8fd796e9
commit
9a7fbdf323
|
@ -4,12 +4,12 @@ from PIL import Image
|
||||||
|
|
||||||
|
|
||||||
class TestUploader(PillowTestCase):
|
class TestUploader(PillowTestCase):
|
||||||
def test_upload_equal(self):
|
def check_upload_equal(self):
|
||||||
result = hopper('P').convert('RGB')
|
result = hopper('P').convert('RGB')
|
||||||
target = hopper('RGB')
|
target = hopper('RGB')
|
||||||
self.assert_image_equal(result, target)
|
self.assert_image_equal(result, target)
|
||||||
|
|
||||||
def test_upload_similar(self):
|
def check_upload_similar(self):
|
||||||
result = hopper('P').convert('RGB')
|
result = hopper('P').convert('RGB')
|
||||||
target = hopper('RGB')
|
target = hopper('RGB')
|
||||||
self.assert_image_similar(result, target, 0)
|
self.assert_image_similar(result, target, 0)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user