(self)
| 2953 | |
| 2954 | @pytest.fixture(autouse=True) |
| 2955 | def setUp(self): |
| 2956 | self.d = np.random.random((10, 3)).astype(np.float64) |
| 2957 | self.cat = PandasExtensionArray(pd.Categorical(["a", "b"] * 5)) |
| 2958 | |
| 2959 | async def check_orthogonal_indexing(self, v, load_async): |
| 2960 | expected = self.d[[8, 3]][:, [2, 1]] |
nothing calls this directly
no test coverage detected