mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-26 17:24:31 +03:00
Regular comments instead of strings [ci skip]
This commit is contained in:
parent
e6456643d4
commit
a7cf91499a
|
@ -460,7 +460,7 @@ class CoreResampleBoxTest(PillowTestCase):
|
|||
self.assert_image_similar(cropped, with_box, 0.4)
|
||||
|
||||
def test_passthrough(self):
|
||||
"When no resize is required"
|
||||
# When no resize is required
|
||||
im = hopper()
|
||||
|
||||
for size, box in [
|
||||
|
@ -478,7 +478,7 @@ class CoreResampleBoxTest(PillowTestCase):
|
|||
raise
|
||||
|
||||
def test_no_passthrough(self):
|
||||
"When resize is required"
|
||||
# When resize is required
|
||||
im = hopper()
|
||||
|
||||
for size, box in [
|
||||
|
@ -498,7 +498,7 @@ class CoreResampleBoxTest(PillowTestCase):
|
|||
raise
|
||||
|
||||
def test_skip_horizontal(self):
|
||||
"Can skip resize in one dimension"
|
||||
# Can skip resize for one dimension
|
||||
im = hopper()
|
||||
|
||||
for flt in [Image.NEAREST, Image.BICUBIC]:
|
||||
|
@ -519,7 +519,7 @@ class CoreResampleBoxTest(PillowTestCase):
|
|||
raise
|
||||
|
||||
def test_skip_vertical(self):
|
||||
"Can skip resize in one dimension"
|
||||
# Can skip resize for one dimension
|
||||
im = hopper()
|
||||
|
||||
for flt in [Image.NEAREST, Image.BICUBIC]:
|
||||
|
|
Loading…
Reference in New Issue
Block a user