(left, right)
| 63 | |
| 64 | |
| 65 | def assert_block_equal(left, right): |
| 66 | tm.assert_numpy_array_equal(left.values, right.values) |
| 67 | assert left.dtype == right.dtype |
| 68 | assert isinstance(left.mgr_locs, BlockPlacement) |
| 69 | assert isinstance(right.mgr_locs, BlockPlacement) |
| 70 | tm.assert_numpy_array_equal(left.mgr_locs.as_array, right.mgr_locs.as_array) |
| 71 | |
| 72 | |
| 73 | def get_numeric_mat(shape): |
no outgoing calls
no test coverage detected