We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b30167 commit 361b226Copy full SHA for 361b226
tests/test_properties.py
@@ -1,5 +1,5 @@
1
-import pytest
2
import numpy as np
+import pytest
3
from numpy.testing import assert_array_equal
4
5
import zarr
@@ -100,7 +100,7 @@ def arrays(
100
chunks=chunks,
101
dtype=nparray.dtype.str,
102
attributes=attributes,
103
- compressor=compressor,
+ # compressor=compressor, # TODO: FIXME
104
# TODO: FIXME seems to break with booleans and timedelta
105
# fill_value=nparray.dtype.type(0),
106
)
@@ -165,4 +165,4 @@ def is_negative_slice(idx):
165
new_data = np.ones_like(actual)
166
zarray[indexer] = new_data
167
nparray[indexer] = new_data
168
- assert_array_equal(nparray, zarray)
+ assert_array_equal(nparray, zarray[:])
0 commit comments