We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dfb2061 commit 1cdd8feCopy full SHA for 1cdd8fe
nitransforms/base.py
@@ -15,7 +15,6 @@
15
from nibabel import funcs as _nbfuncs
16
from nibabel.nifti1 import intent_codes as INTENT_CODES
17
from nibabel.cifti2 import Cifti2Image
18
-from nitransforms import linear as nitl
19
20
EQUALITY_TOL = 1e-5
21
nitransforms/tests/test_base.py
@@ -114,7 +114,9 @@ def _to_hdf5(klass, x5_root):
114
115
#Test ndim returned by affine
116
assert nitl.Affine().ndim == 3
117
- assert nitl.LinearTransformsMapping([nitl.Affine()]).ndim == 4
+ assert nitl.LinearTransformsMapping(
118
+ [nitl.Affine(), nitl.Affine()]
119
+ ).ndim == 4
120
121
# Test applying to Gifti
122
gii = nb.gifti.GiftiImage(
0 commit comments