Skip to content

Commit 48d28ee

Browse files
authored
Merge pull request scipy#22148 from j-bowhay/ndimagetesttypo
TST: ndimage: fix test skip typo
2 parents e8b41fa + 1298ad0 commit 48d28ee

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

scipy/ndimage/tests/test_morphology.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1116,10 +1116,8 @@ def test_binary_erosion29(self, xp):
11161116
border_value=1, iterations=3)
11171117
assert_array_almost_equal(out, expected)
11181118

1119-
@skip_xp_backends(np_only=True, exceptions=["numpy"],
1119+
@skip_xp_backends(np_only=True,
11201120
reason='inplace out= arguments are numpy-specific')
1121-
@xfail_xp_backends("cupy",
1122-
reason="NotImplementedError: only brute_force iteration")
11231121
def test_binary_erosion30(self, xp):
11241122
struct = [[0, 1, 0],
11251123
[1, 1, 1],

0 commit comments

Comments
 (0)