(self, trim)
| 1507 | |
| 1508 | @pytest.mark.parametrize("trim", ("front", "")) |
| 1509 | def test_unexpected_trim_value(self, trim): |
| 1510 | arr = self.a |
| 1511 | with pytest.raises(ValueError, match=r"unexpected character\(s\) in `trim`"): |
| 1512 | trim_zeros(arr, trim=trim) |
| 1513 | |
| 1514 | @pytest.mark.parametrize("shape, axis", [ |
| 1515 | [(5,), None], |
nothing calls this directly
no test coverage detected