mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-10 19:56:47 +03:00
Changed assert statements to unittest calls
This commit is contained in:
parent
b9ea73738e
commit
cca94054aa
|
@ -119,7 +119,7 @@ class TestFileJpeg(PillowTestCase):
|
|||
# using a 4-byte test code should allow us to detect out of
|
||||
# order issues.
|
||||
icc_profile = (b"Test"*int(n/4+1))[:n]
|
||||
assert len(icc_profile) == n # sanity
|
||||
self.assertEqual(len(icc_profile), n) # sanity
|
||||
im1 = self.roundtrip(hopper(), icc_profile=icc_profile)
|
||||
self.assertEqual(im1.info.get("icc_profile"), icc_profile or None)
|
||||
test(0)
|
||||
|
|
|
@ -27,14 +27,14 @@ class TestImageQuantize(PillowTestCase):
|
|||
raise
|
||||
self.assert_image(converted, 'P', converted.size)
|
||||
self.assert_image_similar(converted.convert('RGB'), image, 15)
|
||||
assert len(converted.getcolors()) == 100
|
||||
self.assertEqual(len(converted.getcolors()), 100)
|
||||
|
||||
def test_octree_quantize(self):
|
||||
image = hopper()
|
||||
converted = image.quantize(100, Image.FASTOCTREE)
|
||||
self.assert_image(converted, 'P', converted.size)
|
||||
self.assert_image_similar(converted.convert('RGB'), image, 20)
|
||||
assert len(converted.getcolors()) == 100
|
||||
self.assertEqual(len(converted.getcolors()), 100)
|
||||
|
||||
def test_rgba_quantize(self):
|
||||
image = hopper('RGBA')
|
||||
|
|
|
@ -422,7 +422,7 @@ class CoreResampleBoxTest(PillowTestCase):
|
|||
|
||||
def test_tiles(self):
|
||||
im = Image.open("Tests/images/flower.jpg")
|
||||
assert im.size == (480, 360)
|
||||
self.assertEqual(im.size, (480, 360))
|
||||
dst_size = (251, 188)
|
||||
reference = im.resize(dst_size, Image.BICUBIC)
|
||||
|
||||
|
@ -434,7 +434,7 @@ class CoreResampleBoxTest(PillowTestCase):
|
|||
# This test shows advantages of the subpixel resizing
|
||||
# after supersampling (e.g. during JPEG decoding).
|
||||
im = Image.open("Tests/images/flower.jpg")
|
||||
assert im.size == (480, 360)
|
||||
self.assertEqual(im.size, (480, 360))
|
||||
dst_size = (48, 36)
|
||||
# Reference is cropped image resized to destination
|
||||
reference = im.crop((0, 0, 473, 353)).resize(dst_size, Image.BICUBIC)
|
||||
|
|
Loading…
Reference in New Issue
Block a user