Skip to content

Commit f988404

Browse files
committed
Get rid of dependency on dev dpctl tag in the tests
1 parent 44ddc13 commit f988404

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

dpnp/tests/third_party/cupy/core_tests/test_ndarray_elementwise_op.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -625,11 +625,11 @@ def check_array_boolarray_op(self, op, xp, x_type):
625625
b = xp.array([[3, 1, 4], [-1, -5, -9]], numpy.int8).view(bool)
626626
return op(a, b)
627627

628-
@testing.with_requires("dpctl>=0.22.0dev0")
628+
@testing.with_requires("dpctl>=0.22.0")
629629
def test_add_array_boolarray(self):
630630
self.check_array_boolarray_op(operator.add)
631631

632-
@testing.with_requires("dpctl>=0.22.0dev0")
632+
@testing.with_requires("dpctl>=0.22.0")
633633
def test_iadd_array_boolarray(self):
634634
self.check_array_boolarray_op(operator.iadd)
635635

0 commit comments

Comments
 (0)