mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-10 19:56:47 +03:00
BGR;16 does not fail on big-endian
This commit is contained in:
parent
98510570e6
commit
5faebadd56
|
@ -1037,8 +1037,8 @@ class TestImageBytes:
|
|||
|
||||
@pytest.mark.parametrize("mode", modes)
|
||||
def test_getdata_putdata(self, mode: str) -> None:
|
||||
if is_big_endian and mode in ("BGR;15", "BGR;16"):
|
||||
pytest.xfail(f"Known failure of {mode} on big-endian")
|
||||
if is_big_endian and mode == "BGR;15":
|
||||
pytest.xfail("Known failure of BGR;15 on big-endian")
|
||||
im = hopper(mode)
|
||||
reloaded = Image.new(mode, im.size)
|
||||
reloaded.putdata(im.getdata())
|
||||
|
|
Loading…
Reference in New Issue
Block a user