Skip to content

Commit 21a0c6a

Browse files
committed
cleaniup
1 parent 7e32463 commit 21a0c6a

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

tests/test_properties.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
import hypothesis.extra.numpy as npst
1010
import hypothesis.strategies as st
11-
from hypothesis import assume, given, note
11+
from hypothesis import assume, given
1212

1313
from zarr.abc.store import Store
1414
from zarr.core.metadata import ArrayV2Metadata, ArrayV3Metadata
@@ -65,7 +65,6 @@ def test_basic_indexing(data: st.DataObject) -> None:
6565

6666

6767
@given(data=st.data())
68-
# @reproduce_failure("6.126.0", b"AXicFYiBDQAwDIJ060F7gdP6+TQkEkH7cJAZCXHpjjltecJuiz+MwwVc")
6968
def test_oindex(data: st.DataObject) -> None:
7069
# integer_array_indices can't handle 0-size dimensions.
7170
zarray = data.draw(simple_arrays(shapes=npst.array_shapes(max_dims=4, min_side=1)))
@@ -83,7 +82,6 @@ def test_oindex(data: st.DataObject) -> None:
8382
new_data = data.draw(numpy_arrays(shapes=st.just(actual.shape), dtype=nparray.dtype))
8483
nparray[npindexer] = new_data
8584
zarray.oindex[zindexer] = new_data
86-
note((new_data, npindexer, nparray, zindexer, zarray[:]))
8785
assert_array_equal(nparray, zarray[:])
8886

8987

0 commit comments

Comments
 (0)