mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-06-05 13:43:28 +03:00
Continuation line under-indented for visual indent
This commit is contained in:
parent
6dd0e48d9a
commit
9b0d4baa8c
|
@ -446,20 +446,20 @@ class TestImageCms(PillowTestCase):
|
||||||
self.assert_image_equal(source_image_aux, result_image_aux)
|
self.assert_image_equal(source_image_aux, result_image_aux)
|
||||||
|
|
||||||
def test_preserve_auxiliary_channels_rgba(self):
|
def test_preserve_auxiliary_channels_rgba(self):
|
||||||
self.assert_aux_channel_preserved(mode='RGBA',
|
self.assert_aux_channel_preserved(
|
||||||
transform_in_place=False, preserved_channel='A')
|
mode='RGBA', transform_in_place=False, preserved_channel='A')
|
||||||
|
|
||||||
def test_preserve_auxiliary_channels_rgba_in_place(self):
|
def test_preserve_auxiliary_channels_rgba_in_place(self):
|
||||||
self.assert_aux_channel_preserved(mode='RGBA',
|
self.assert_aux_channel_preserved(
|
||||||
transform_in_place=True, preserved_channel='A')
|
mode='RGBA', transform_in_place=True, preserved_channel='A')
|
||||||
|
|
||||||
def test_preserve_auxiliary_channels_rgbx(self):
|
def test_preserve_auxiliary_channels_rgbx(self):
|
||||||
self.assert_aux_channel_preserved(mode='RGBX',
|
self.assert_aux_channel_preserved(
|
||||||
transform_in_place=False, preserved_channel='X')
|
mode='RGBX', transform_in_place=False, preserved_channel='X')
|
||||||
|
|
||||||
def test_preserve_auxiliary_channels_rgbx_in_place(self):
|
def test_preserve_auxiliary_channels_rgbx_in_place(self):
|
||||||
self.assert_aux_channel_preserved(mode='RGBX',
|
self.assert_aux_channel_preserved(
|
||||||
transform_in_place=True, preserved_channel='X')
|
mode='RGBX', transform_in_place=True, preserved_channel='X')
|
||||||
|
|
||||||
def test_auxiliary_channels_isolated(self):
|
def test_auxiliary_channels_isolated(self):
|
||||||
# test data in aux channels does not affect non-aux channels
|
# test data in aux channels does not affect non-aux channels
|
||||||
|
|
Loading…
Reference in New Issue
Block a user