Skip to content

Commit 3552e4f

Browse files
committed
fix: assert with npall
1 parent 4e20ab4 commit 3552e4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nitransforms/tests/test_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ def test_ImageSpace(get_data):
88
im = get_data['RAS']
99

1010
img = ImageSpace(im)
11-
assert img.affine == np.linalg.inv(img.inverse)
11+
assert np.all(img.affine == np.linalg.inv(img.inverse))
1212

1313
# nd index / coords
1414
idxs = img.ndindex

0 commit comments

Comments
 (0)