Skip to content

Commit

Permalink
Merge pull request #8022 from radarhere/big_endian
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Apr 27, 2024
2 parents 824db71 + 86fb383 commit c250a44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/test_image.py
Expand Up @@ -1050,7 +1050,7 @@ def test_roundtrip_bytes_method(self, mode: str) -> None:

@pytest.mark.parametrize("mode", modes)
def test_getdata_putdata(self, mode: str) -> None:
if is_big_endian and mode == "BGR;15":
if is_big_endian() and mode == "BGR;15":
pytest.xfail("Known failure of BGR;15 on big-endian")
im = hopper(mode)
reloaded = helper_image_new(mode, im.size)
Expand Down

0 comments on commit c250a44

Please sign in to comment.