(data)
| 5161 | ], |
| 5162 | ) |
| 5163 | def test_regular_chunks(data): |
| 5164 | from dask.array.core import _check_regular_chunks |
| 5165 | |
| 5166 | chunkset, expected = data |
| 5167 | assert _check_regular_chunks(chunkset) == expected |
| 5168 | |
| 5169 | |
| 5170 | def test_from_array_respects_zarr_shards(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…