Skip to content

Commit 05907b1

Browse files
Enable test_broadcast_rhs
1 parent 3127190 commit 05907b1

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

dpnp/tests/test_linalg.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2297,7 +2297,6 @@ def test_strided_rhs(self):
22972297

22982298
assert dpnp.allclose(a_dp @ x, b_dp, rtol=1e-6, atol=1e-6)
22992299

2300-
@pytest.mark.skip("Not implemented yet")
23012300
@pytest.mark.parametrize(
23022301
"b_shape",
23032302
[
@@ -2320,7 +2319,7 @@ def test_broadcast_rhs(self, b_shape):
23202319

23212320
lu, piv = dpnp.linalg.lu_factor(a_dp, check_finite=False)
23222321
x = dpnp.linalg.lu_solve(
2323-
(lu, piv), b_dp, overwrite_b=True, check_finite=False
2322+
(lu, piv), b_dp, overwrite_b=False, check_finite=False
23242323
)
23252324

23262325
assert x.shape == b_dp.shape

0 commit comments

Comments
 (0)