Skip to content

Commit 71e2e1b

Browse files
author
Ben Cipollini
committed
BF: files must be makeable (they're made!) for this test.
1 parent 5f2afe2 commit 71e2e1b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nibabel/tests/test_files_interface.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def test_round_trip_spatialimages():
8989
data = np.arange(24, dtype='i4').reshape((2, 3, 4))
9090
aff = np.eye(4)
9191
klasses = [klass for klass in all_image_classes
92-
if klass.rw and issubclass(klass, SpatialImage)]
92+
if klass.rw and klass.makeable and issubclass(klass, SpatialImage)]
9393
for klass in klasses:
9494
file_map = klass.make_file_map()
9595
for key in file_map:

0 commit comments

Comments
 (0)