mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-10 19:56:47 +03:00
Fixing a typo in comments
This commit is contained in:
parent
b3565d8ae3
commit
cf31e70735
|
@ -16,7 +16,7 @@ class TestFileWebp(PillowTestCase):
|
|||
self.skipTest('WebP support not installed')
|
||||
return
|
||||
|
||||
# WebPAnimDecoder only retuns RGBA or RGBX, never RGB
|
||||
# WebPAnimDecoder only returns RGBA or RGBX, never RGB
|
||||
self.rgb_mode = "RGBX" if _webp.HAVE_WEBPANIM else "RGB"
|
||||
|
||||
def test_version(self):
|
||||
|
|
|
@ -19,7 +19,7 @@ class TestFileWebpLossless(PillowTestCase):
|
|||
if (_webp.WebPDecoderVersion() < 0x0200):
|
||||
self.skipTest('lossless not included')
|
||||
|
||||
# WebPAnimDecoder only retuns RGBA or RGBX, never RGB
|
||||
# WebPAnimDecoder only returns RGBA or RGBX, never RGB
|
||||
self.rgb_mode = "RGBX" if _webp.HAVE_WEBPANIM else "RGB"
|
||||
|
||||
def test_write_lossless_rgb(self):
|
||||
|
|
Loading…
Reference in New Issue
Block a user