Removed assert

This commit is contained in:
Andrew Murray 2025-10-14 08:48:22 +11:00
parent 52413cf0dc
commit 014f421221

View File

@ -111,9 +111,6 @@ def test_to_array(mode: str, dtype: nanoarrow, mask: list[int] | None) -> None:
assert arr.schema.nullable == dtype.nullable assert arr.schema.nullable == dtype.nullable
reloaded = Image.fromarrow(arr, mode, img.size) reloaded = Image.fromarrow(arr, mode, img.size)
assert reloaded
assert_image_equal(img, reloaded) assert_image_equal(img, reloaded)