Skip to content

Commit 6daadc8

Browse files
Update nibabel/tests/test_spatialimages.py
Co-authored-by: Chris Markiewicz <[email protected]>
1 parent 59d6291 commit 6daadc8

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

nibabel/tests/test_spatialimages.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,10 @@ def test_slicer(self):
398398
img_klass = self.image_class
399399
in_data_template = np.arange(240, dtype=np.int16)
400400
base_affine = np.eye(4)
401-
for dshape in ((4, 5, 6, 2), (8, 5, 6)): # Time series # Volume
401+
for dshape in (
402+
(4, 5, 6, 2), # Time series
403+
(8, 5, 6), # Volume
404+
):
402405
in_data = in_data_template.copy().reshape(dshape)
403406
img = img_klass(in_data, base_affine.copy())
404407

0 commit comments

Comments
 (0)