File tree Expand file tree Collapse file tree 2 files changed +5
-11
lines changed Expand file tree Collapse file tree 2 files changed +5
-11
lines changed Original file line number Diff line number Diff line change @@ -7,10 +7,10 @@ def test_WarpPointsFromStd_inputs():
7
7
input_map = dict (args = dict (argstr = '%s' ,
8
8
),
9
9
coord_mm = dict (argstr = '-mm' ,
10
- xor = ['coord_vox' ],
10
+ xor = [u 'coord_vox' ],
11
11
),
12
12
coord_vox = dict (argstr = '-vox' ,
13
- xor = ['coord_mm' ],
13
+ xor = [u 'coord_mm' ],
14
14
),
15
15
environ = dict (nohash = True ,
16
16
usedefault = True ,
@@ -25,22 +25,16 @@ def test_WarpPointsFromStd_inputs():
25
25
mandatory = True ,
26
26
position = - 2 ,
27
27
),
28
- out_file = dict (argstr = '> %s' ,
29
- name_source = 'in_coords' ,
30
- name_template = '%s_warped' ,
31
- output_name = 'out_file' ,
32
- position = - 1 ,
33
- ),
34
28
std_file = dict (argstr = '-std %s' ,
35
29
mandatory = True ,
36
30
),
37
31
terminal_output = dict (nohash = True ,
38
32
),
39
33
warp_file = dict (argstr = '-warp %s' ,
40
- xor = ['xfm_file' ],
34
+ xor = [u 'xfm_file' ],
41
35
),
42
36
xfm_file = dict (argstr = '-xfm %s' ,
43
- xor = ['warp_file' ],
37
+ xor = [u 'warp_file' ],
44
38
),
45
39
)
46
40
inputs = WarpPointsFromStd .input_spec ()
Original file line number Diff line number Diff line change @@ -2073,7 +2073,7 @@ class WarpPointsFromStd(CommandLine):
2073
2073
>>> warppoints.inputs.std_file = 'mni.nii'
2074
2074
>>> warppoints.inputs.warp_file = 'warpfield.nii'
2075
2075
>>> warppoints.inputs.coord_mm = True
2076
- >>> warppoints.cmdline # doctest: +ELLIPSIS
2076
+ >>> warppoints.cmdline # doctest: +ELLIPSIS +IGNORE_UNICODE
2077
2077
'std2imgcoord -mm -img T1.nii -std mni.nii -warp warpfield.nii surf.txt'
2078
2078
>>> res = warppoints.run() # doctest: +SKIP
2079
2079
You can’t perform that action at this time.
0 commit comments