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 df18805 commit e6164c6Copy full SHA for e6164c6
tests/test_properties.py
@@ -34,7 +34,7 @@ def test_basic_indexing(data: st.DataObject) -> None:
34
35
@given(data=st.data())
36
def test_vindex(data: st.DataObject) -> None:
37
- zarray = data.draw(arrays())
+ zarray = data.draw(arrays(shapes=npst.array_shapes(max_dims=4, min_side=1)))
38
# integer_array_indices can't handle 0-size dimensions.
39
assume(all(s > 0 for s in zarray.shape))
40
nparray = zarray[:]
0 commit comments