Skip to content

Commit 361b226

Browse files
committed
ADapt for V3
1 parent 4b30167 commit 361b226

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_properties.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import pytest
21
import numpy as np
2+
import pytest
33
from numpy.testing import assert_array_equal
44

55
import zarr
@@ -100,7 +100,7 @@ def arrays(
100100
chunks=chunks,
101101
dtype=nparray.dtype.str,
102102
attributes=attributes,
103-
compressor=compressor,
103+
# compressor=compressor, # TODO: FIXME
104104
# TODO: FIXME seems to break with booleans and timedelta
105105
# fill_value=nparray.dtype.type(0),
106106
)
@@ -165,4 +165,4 @@ def is_negative_slice(idx):
165165
new_data = np.ones_like(actual)
166166
zarray[indexer] = new_data
167167
nparray[indexer] = new_data
168-
assert_array_equal(nparray, zarray)
168+
assert_array_equal(nparray, zarray[:])

0 commit comments

Comments
 (0)