Skip to content

Commit cc38bb8

Browse files
committed
Fix fix tests
1 parent bb4ec35 commit cc38bb8

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

tests/lightning/dataset_ng/callbacks/prediction_writer_callbacks/test_write_tile_zarr_strategy.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -230,17 +230,17 @@ def test_update_data_shape(axes, data_shape, expected_shape):
230230
("YX", (1, 1, 32, 64), (32, 64)),
231231
("YX", (1, 1, 128, 32), (128, 32)),
232232
("ZYX", (1, 1, 32, 64, 64), (32, 64, 64)),
233-
("ZYX", (1, 1, 64, 128, 64), (64, 128, 64)),
233+
("ZYX", (1, 1, 64, 128, 64), (1, 128, 64)),
234234
("CYX", (1, 5, 64, 64), (1, 64, 64)),
235235
("SYX", (5, 1, 64, 256), (1, 64, 128)),
236236
("SCYX", (8, 5, 64, 64), (1, 1, 64, 64)),
237-
("SCZYX", (5, 5, 32, 256, 64), (1, 1, 32, 128, 64)),
237+
("SCZYX", (5, 5, 32, 256, 64), (1, 1, 1, 128, 64)),
238238
# different orders (but YX together)
239-
("YXZ", (1, 1, 32, 64, 64), (32, 64, 64)),
239+
("YXZ", (1, 1, 32, 64, 64), (1, 64, 64)),
240240
("YXC", (1, 5, 64, 64), (1, 64, 64)),
241-
("SYXZ", (1, 1, 32, 64, 64), (1, 32, 64, 64)),
241+
("SYXZ", (1, 1, 32, 64, 64), (1, 1, 64, 64)),
242242
("CSYX", (8, 5, 64, 64), (1, 1, 64, 64)),
243-
("SZCYX", (8, 5, 512, 256, 64), (1, 1, 128, 128, 64)),
243+
("SZCYX", (8, 5, 512, 256, 64), (1, 1, 1, 128, 64)),
244244
# T dimension
245245
("TYX", (5, 1, 64, 64), (1, 64, 64)),
246246
("TCYX", (5, 3, 64, 64), (1, 1, 64, 64)),

0 commit comments

Comments
 (0)