Skip to content

Commit 8088e3a

Browse files
Update path to cupy.testing in some tests
1 parent d4253ae commit 8088e3a

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

dpnp/tests/test_arraycreation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
)
1313

1414
import dpnp
15-
from tests.third_party.cupy import testing
1615

1716
from .helper import (
1817
assert_dtype_allclose,
1918
get_all_dtypes,
2019
has_support_aspect64,
2120
)
21+
from .third_party.cupy import testing
2222

2323

2424
class TestTrace:

dpnp/tests/test_indexing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414

1515
import dpnp
1616
from dpnp.dpnp_array import dpnp_array
17-
from tests.third_party.cupy import testing
1817

1918
from .helper import get_all_dtypes, get_integer_dtypes, has_support_aspect64
19+
from .third_party.cupy import testing
2020

2121

2222
def _add_keepdims(func):

dpnp/tests/test_ndarray.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
from numpy.testing import assert_allclose, assert_array_equal
55

66
import dpnp
7-
from tests.third_party.cupy import testing
87

98
from .helper import (
109
get_all_dtypes,
1110
get_complex_dtypes,
1211
get_float_dtypes,
1312
has_support_aspect64,
1413
)
14+
from .third_party.cupy import testing
1515

1616

1717
@pytest.mark.usefixtures("suppress_complex_warning")

dpnp/tests/test_product.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
from numpy.testing import assert_raises
66

77
import dpnp
8-
from tests.third_party.cupy import testing
98

109
from .helper import assert_dtype_allclose, get_all_dtypes, get_complex_dtypes
10+
from .third_party.cupy import testing
1111

1212

1313
def _assert_selective_dtype_allclose(result, expected, dtype):

0 commit comments

Comments
 (0)