We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96c57c9 commit 49832d9Copy full SHA for 49832d9
nipype/interfaces/spm/tests/test_utils.py
@@ -35,9 +35,9 @@ def test_apply_transform():
35
applymat.inputs.in_file = moving
36
applymat.inputs.mat = mat
37
scrpt = applymat._make_matlab_command(None)
38
- expected = 'img_space = spm_get_space(infile);'
+ expected = '[p n e v] = spm_fileparts(V.fname);'
39
assert_equal( expected in scrpt, True)
40
- expected = 'spm_get_space(infile, M * img_space);'
+ expected = 'V.mat = transform.M * V.mat;'
41
assert_equal(expected in scrpt, True)
42
43
def test_reslice():
0 commit comments