Skip to content

Commit 985b4fa

Browse files
committed
Fix pre-commit in cupy fill tests
1 parent 87e6560 commit 985b4fa

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

tests/third_party/cupy/core_tests/test_ndarray_copy_and_view.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -274,9 +274,7 @@ def test_fill(self, xp, dtype):
274274
a.fill(1)
275275
return a
276276

277-
@pytest.mark.skip(
278-
"Numpy allows Numpy scalar arrays as fill value"
279-
)
277+
@pytest.mark.skip("Numpy allows Numpy scalar arrays as fill value")
280278
def test_fill_with_numpy_scalar_ndarray(self, xp, dtype1, dtype2):
281279
a = testing.shaped_arange((2, 3, 4), xp, dtype1)
282280
a.fill(numpy.ones((), dtype=dtype2))

0 commit comments

Comments
 (0)