(self)
| 8084 | assert_array_equal(res, obj) |
| 8085 | |
| 8086 | def test_padding(self): |
| 8087 | for j in range(8): |
| 8088 | x = np.array([(1,), (2,)], dtype={'f0': (int, j)}) |
| 8089 | self._check_roundtrip(x) |
| 8090 | |
| 8091 | def test_reference_leak(self): |
| 8092 | if HAS_REFCOUNT: |
nothing calls this directly
no test coverage detected