Skip to content

Commit 3b57f0c

Browse files
Rename condition to _condition in test_solve.py
1 parent 93534d7 commit 3b57f0c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/third_party/cupy/linalg_tests/test_solve.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
is_cpu_device,
1111
)
1212
from tests.third_party.cupy import testing
13-
from tests.third_party.cupy.testing import condition
13+
from tests.third_party.cupy.testing import _condition
1414

1515

1616
@testing.parameterize(
@@ -104,7 +104,7 @@ def test_invalid_shape(self):
104104
)
105105
class TestInv(unittest.TestCase):
106106
@testing.for_dtypes("ifdFD")
107-
@condition.retry(10)
107+
@_condition.retry(10)
108108
def check_x(self, a_shape, dtype):
109109
a_cpu = numpy.random.randint(0, 10, size=a_shape)
110110
a_cpu = a_cpu.astype(dtype, order=self.order)

0 commit comments

Comments
 (0)