(self, arr)
| 1470 | np.array([0, 2**64, 0])] |
| 1471 | ) |
| 1472 | def test_overflow(self, arr): |
| 1473 | slc = np.s_[1:2] |
| 1474 | res = trim_zeros(arr) |
| 1475 | assert_array_equal(res, arr[slc]) |
| 1476 | |
| 1477 | def test_no_trim(self): |
| 1478 | arr = np.array([None, 1, None]) |
nothing calls this directly
no test coverage detected