Length-3 array with a known sort order. This should be three items [B, C, A] with A < B < C
(data_for_grouping)
| 229 | |
| 230 | @pytest.fixture |
| 231 | def data_for_sorting(data_for_grouping): |
| 232 | """ |
| 233 | Length-3 array with a known sort order. |
| 234 | |
| 235 | This should be three items [B, C, A] with |
| 236 | A < B < C |
| 237 | """ |
| 238 | return type(data_for_grouping)._from_sequence( |
| 239 | [data_for_grouping[0], data_for_grouping[7], data_for_grouping[4]], |
| 240 | dtype=data_for_grouping.dtype, |
| 241 | ) |
| 242 | |
| 243 | |
| 244 | @pytest.fixture |
nothing calls this directly
no test coverage detected