Skip to content

Commit dab480a

Browse files
author
Vahid Tavanashad
committed
fix usm_type test
1 parent d2ea18f commit dab480a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_usm_type.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -833,9 +833,9 @@ def test_cond(usm_type, p):
833833
@pytest.mark.parametrize(
834834
"obj", [slice(None, None, 2), 3, [2, 3]], ids=["slice", "int", "list"]
835835
)
836-
def test_delete(usm_type_x, usm_type_y):
837-
x = dpnp.arange(5, usm_type=usm_type)
838-
result = dpnp.delete(x, obj)
836+
def test_delete(usm_type, obj):
837+
x = dp.arange(5, usm_type=usm_type)
838+
result = dp.delete(x, obj)
839839

840840
assert x.usm_type == usm_type
841841
assert result.usm_type == usm_type

0 commit comments

Comments
 (0)