Skip to content

Commit f381aa4

Browse files
author
Vahid Tavanashad
committed
fix issue for no fp64 support
1 parent d6f515d commit f381aa4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_manipulation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ def test_error(self):
433433
with pytest.raises(IndexError):
434434
dpnp.delete(a, dpnp.array([1.0, 2.0]))
435435
with pytest.raises(IndexError):
436-
dpnp.delete(a, dpnp.array([], dtype=float))
436+
dpnp.delete(a, dpnp.array([], dtype=dpnp.float32))
437437

438438
@pytest.mark.parametrize("order", ["C", "F"])
439439
def test_order(self, order):

0 commit comments

Comments
 (0)