Skip to content

Commit 9371827

Browse files
committed
Remove test for unsupported trim="" for now
1 parent 0966478 commit 9371827

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

numpy/lib/tests/test_function_base.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1419,9 +1419,6 @@ def test_trim_arg(self):
14191419
res = trim_zeros(a, trim='b')
14201420
assert_array_equal(res, [0, 1, 2])
14211421

1422-
res = trim_zeros(a, trim='')
1423-
assert_array_equal(res, [0, 1, 2, 0])
1424-
14251422
@pytest.mark.parametrize("trim", ("front", ""))
14261423
def test_unexpected_trim_value(self, trim):
14271424
arr = self.a

0 commit comments

Comments
 (0)