Skip to content

Commit 6f3bee8

Browse files
committed
Update logic_tests/test_content.py
1 parent 3bc4563 commit 6f3bee8

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

dpnp/tests/third_party/cupy/logic_tests/test_content.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,14 @@
66

77

88
class TestContent(unittest.TestCase):
9-
@testing.for_dtypes("fd")
9+
10+
@testing.for_dtypes("efFdD")
1011
@testing.numpy_cupy_array_equal()
1112
def check_unary_inf(self, name, xp, dtype):
1213
a = xp.array([-3, numpy.inf, -1, -numpy.inf, 0, 1, 2], dtype=dtype)
1314
return getattr(xp, name)(a)
1415

15-
@testing.for_dtypes("fd")
16+
@testing.for_dtypes("efFdD")
1617
@testing.numpy_cupy_array_equal()
1718
def check_unary_nan(self, name, xp, dtype):
1819
a = xp.array(
@@ -31,6 +32,7 @@ def test_isnan(self):
3132

3233

3334
class TestUfuncLike(unittest.TestCase):
35+
3436
@testing.numpy_cupy_array_equal()
3537
def check_unary(self, name, xp):
3638
a = xp.array([-3, xp.inf, -1, -xp.inf, 0, 1, 2, xp.nan])

0 commit comments

Comments
 (0)