Skip to content

Commit

Permalink
Fix a bug in test_search.py::TestWhere::test_ndim
Browse files Browse the repository at this point in the history
  • Loading branch information
antonwolfy committed Jan 20, 2025
1 parent f77d8de commit d449db8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dpnp/tests/test_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ def test_ndim(self):
assert_array_equal(np_res, dpnp_res)

np_res = numpy.where(c, a.T, b.T)
dpnp_res = numpy.where(ic, ia.T, ib.T)
dpnp_res = dpnp.where(ic, ia.T, ib.T)
assert_array_equal(np_res, dpnp_res)

def test_dtype_mix(self):
Expand Down

0 comments on commit d449db8

Please sign in to comment.