Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions array_api_tests/test_sorting_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def assert_scalar_in_set(
@given(
x=hh.arrays(
dtype=hh.real_dtypes,
shape=hh.shapes(min_dims=1, min_side=1),
shape=hh.shapes(min_dims=1, min_side=1, max_side=50),
elements={"allow_nan": False},
),
data=st.data(),
Expand Down Expand Up @@ -94,7 +94,7 @@ def test_argsort(x, data):
@given(
x=hh.arrays(
dtype=hh.real_dtypes,
shape=hh.shapes(min_dims=1, min_side=1),
shape=hh.shapes(min_dims=1, min_side=1, max_side=50),
elements={"allow_nan": False},
),
data=st.data(),
Expand Down