Skip to content

Commit adc9646

Browse files
committed
Don't generate 0-dimensional inputs to test_vecdot
1 parent 958d5c5 commit adc9646

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

array_api_tests/test_linalg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -628,7 +628,7 @@ def true_trace(x_stack):
628628

629629
@given(
630630
dtypes=mutually_promotable_dtypes(dtypes=dh.numeric_dtypes),
631-
shape=shapes(),
631+
shape=shapes(min_dims=1),
632632
data=data(),
633633
)
634634
def test_vecdot(dtypes, shape, data):

0 commit comments

Comments
 (0)