Skip to content

Commit 3c2fb72

Browse files
author
Vahid Tavanashad
committed
remove redundant test in test_sycl_queue.py
1 parent f492e3d commit 3c2fb72

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

dpnp/tests/test_sycl_queue.py

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2143,18 +2143,3 @@ def test_choose(device):
21432143
inds = dpnp.array([0, 1, 3], dtype="i4", device=device)
21442144
result = dpnp.choose(inds, chc)
21452145
assert_sycl_queue_equal(result.sycl_queue, chc.sycl_queue)
2146-
2147-
2148-
@pytest.mark.parametrize("func", ["hamming"])
2149-
@pytest.mark.parametrize(
2150-
"device",
2151-
valid_dev + [None],
2152-
ids=[device.filter_string for device in valid_dev] + [None],
2153-
)
2154-
def test_window(func, device):
2155-
result = getattr(dpnp, func)(10, device=device)
2156-
if device is None:
2157-
# assert against default device
2158-
device = dpctl.select_default_device()
2159-
2160-
assert result.sycl_device == device

0 commit comments

Comments
 (0)