diff --git a/tests/third_party/cupy/sorting_tests/test_search.py b/tests/third_party/cupy/sorting_tests/test_search.py index 2e3288c6bf01..9b34ba14312e 100644 --- a/tests/third_party/cupy/sorting_tests/test_search.py +++ b/tests/third_party/cupy/sorting_tests/test_search.py @@ -82,7 +82,6 @@ def test_argmax_zero_size_axis1(self, xp, dtype): return a.argmax(axis=1) @testing.slow - @pytest.mark.skip("slow mark is not implemented") def test_argmax_int32_overflow(self): a = testing.shaped_arange((2**32 + 1,), cupy, numpy.float64) assert a.argmax().item() == 2**32 @@ -162,7 +161,6 @@ def test_argmin_zero_size_axis1(self, xp, dtype): return a.argmin(axis=1) @testing.slow - @pytest.mark.skip("slow mark is not implemented") def test_argmin_int32_overflow(self): a = testing.shaped_arange((2**32 + 1,), cupy, numpy.float64) cupy.negative(a, out=a)