Skip to content

Commit 628c5ed

Browse files
committed
Fix the input strategy for test_matrix_transpose()
1 parent 18c425e commit 628c5ed

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
@@ -325,7 +325,7 @@ def test_matrix_rank(x, kw):
325325
pass
326326

327327
@given(
328-
x=xps.arrays(dtype=dtypes, shape=matrix_shapes),
328+
x=xps.arrays(dtype=dtypes, shape=matrix_shapes()),
329329
)
330330
def test_matrix_transpose(x):
331331
res = linalg.matrix_transpose(x)

0 commit comments

Comments
 (0)