(self)
| 383 | _check_shape_tile_ids(combined_tile_ids) |
| 384 | |
| 385 | def test_check_lengths(self): |
| 386 | ds = create_test_data(0) |
| 387 | combined_tile_ids = {(0, 0): ds, (0, 1): ds, (0, 2): ds, (1, 0): ds, (1, 1): ds} |
| 388 | with pytest.raises( |
| 389 | ValueError, match=r"sub-lists do not have consistent lengths" |
| 390 | ): |
| 391 | _check_shape_tile_ids(combined_tile_ids) |
| 392 | |
| 393 | |
| 394 | class TestNestedCombine: |
nothing calls this directly
no test coverage detected