Skip to content

Commit 3f3e4f5

Browse files
committed
[revert]
1 parent 349afa8 commit 3f3e4f5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/test_properties.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
import hypothesis.extra.numpy as npst
99
import hypothesis.strategies as st
10-
from hypothesis import assume, given
10+
from hypothesis import assume, given, note, reproduce_failure
1111

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

6565

6666
@given(data=st.data())
67+
@reproduce_failure("6.126.0", b"AXicFYiBDQAwDIJ060F7gdP6+TQkEkH7cJAZCXHpjjltecJuiz+MwwVc")
6768
def test_oindex(data: st.DataObject) -> None:
6869
# integer_array_indices can't handle 0-size dimensions.
6970
zarray = data.draw(simple_arrays(shapes=npst.array_shapes(max_dims=4, min_side=1)))
@@ -77,6 +78,7 @@ def test_oindex(data: st.DataObject) -> None:
7778
new_data = data.draw(npst.arrays(shape=st.just(actual.shape), dtype=nparray.dtype))
7879
nparray[npindexer] = new_data
7980
zarray.oindex[zindexer] = new_data
81+
note(new_data, npindexer, nparray, zindexer, zarray[:])
8082
assert_array_equal(nparray, zarray[:])
8183

8284

0 commit comments

Comments
 (0)