fixing typo in filetest name

This commit is contained in:
Alexander Piskun 2022-07-26 00:45:23 +03:00
parent 6e97da0260
commit db20d0f8fe
No known key found for this signature in database
GPG Key ID: 1F0BF0EC3CF22721
2 changed files with 1 additions and 1 deletions

View File

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -352,7 +352,7 @@ def test_exif_transpose():
assert 0x0112 not in transposed_im.getexif() assert 0x0112 not in transposed_im.getexif()
# Orientation from "XML:com.adobe.xmp" info key (from exiftool) # Orientation from "XML:com.adobe.xmp" info key (from exiftool)
with Image.open("Tests/images/xmp_orientation_exiftool.png") as im: with Image.open("Tests/images/xmp_tags_orientation_exiftool.png") as im:
assert im.getexif()[0x0112] == 8 assert im.getexif()[0x0112] == 8
transposed_im = ImageOps.exif_transpose(im) transposed_im = ImageOps.exif_transpose(im)