Skip to content

Commit 26f7f00

Browse files
committed
MAINT: limit the array size in meshgrid
1 parent 3e46a98 commit 26f7f00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

array_api_tests/test_creation_functions.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@ def test_meshgrid(dtype, data):
499499
shapes = data.draw(
500500
st.integers(1, 5).flatmap(
501501
lambda n: hh.mutually_broadcastable_shapes(
502-
n, min_dims=1, max_dims=1, max_side=5
502+
n, min_dims=1, max_dims=1, max_side=4
503503
)
504504
),
505505
label="shapes",

0 commit comments

Comments
 (0)