(self, arr)
| 1302 | np.array([0, 2**64, 0])] |
| 1303 | ) |
| 1304 | def test_overflow(self, arr): |
| 1305 | slc = np.s_[1:2] |
| 1306 | res = trim_zeros(arr) |
| 1307 | assert_array_equal(res, arr[slc]) |
| 1308 | |
| 1309 | def test_no_trim(self): |
| 1310 | arr = np.array([None, 1, None]) |
nothing calls this directly
no test coverage detected