Skip to content

Commit b9ccb28

Browse files
Pass correct order
1 parent 70f6cf6 commit b9ccb28

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dpnp/tests/test_linalg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2144,7 +2144,7 @@ def test_strided(self):
21442144
a_np = self._make_nonsingular_nd_np(
21452145
(5, 3, 3), dpnp.default_float_type(), "F"
21462146
)
2147-
a_dp = dpnp.array(a_np, order=order)
2147+
a_dp = dpnp.array(a_np, order="F")
21482148
a_stride = a_dp[::2]
21492149
lu, piv = dpnp.linalg.lu_factor(a_stride, check_finite=False)
21502150
for i in range(a_stride.shape[0]):

0 commit comments

Comments
 (0)