diff --git a/tests/ngff/test_ngff_utils.py b/tests/ngff/test_ngff_utils.py index 7cc0a5ca..d63816a4 100644 --- a/tests/ngff/test_ngff_utils.py +++ b/tests/ngff/test_ngff_utils.py @@ -303,6 +303,9 @@ def process_single_position_setup(draw): position_keys, channel_names, shape, chunks, scale, dtype = draw( plate_setup() ) + # NOTE: Chunking along T,C =1,1 + if chunks is not None: + chunks = (1, 1) + chunks[2:] T, C = shape[:2]