(self)
| 987 | class TestDelete: |
| 988 | |
| 989 | def _create_arrays(self): |
| 990 | a = np.arange(5) |
| 991 | nd_a = np.arange(5).repeat(2).reshape(1, 5, 2) |
| 992 | return a, nd_a |
| 993 | |
| 994 | def _check_inverse_of_slicing(self, indices): |
| 995 | a, nd_a = self._create_arrays() |
no test coverage detected