(self)
| 1480 | assert_array_equal(arr, res) |
| 1481 | |
| 1482 | def test_list_to_list(self): |
| 1483 | res = trim_zeros(self.a.tolist()) |
| 1484 | assert isinstance(res, list) |
| 1485 | |
| 1486 | @pytest.mark.parametrize("ndim", (0, 1, 2, 3, 10)) |
| 1487 | def test_nd_basic(self, ndim): |
nothing calls this directly
no test coverage detected