Skip to content

Commit b37f65f

Browse files
committed
added auto-generated tests
1 parent 0a4bda2 commit b37f65f

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

nipype/interfaces/dtitk/tests/test_auto_BinThreshTask.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def test_BinThreshTask_inputs():
1212
ignore_exception=dict(nohash=True,
1313
usedefault=True,
1414
),
15-
in_image=dict(argstr='%s',
15+
in_file=dict(argstr='%s',
1616
exists=True,
1717
mandatory=False,
1818
position=0,

nipype/interfaces/dtitk/tests/test_auto_SVAdjustVoxSpTask.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,16 @@ def test_SVAdjustVoxSpTask_inputs():
1212
ignore_exception=dict(nohash=True,
1313
usedefault=True,
1414
),
15+
in_file=dict(argstr='-in %s',
16+
exists=True,
17+
mandatory=True,
18+
position=0,
19+
),
1520
in_target=dict(argstr='-target %s',
1621
exists=True,
1722
mandatory=False,
1823
position=2,
1924
),
20-
in_volume=dict(argstr='-in %s',
21-
exists=True,
22-
mandatory=True,
23-
position=0,
24-
),
2525
in_voxsz=dict(argstr='-vsize %s',
2626
exists=True,
2727
mandatory=False,
@@ -35,7 +35,7 @@ def test_SVAdjustVoxSpTask_inputs():
3535
out_path=dict(argstr='-out %s',
3636
exists=True,
3737
mandatory=False,
38-
name_source='in_volume',
38+
name_source='in_file',
3939
name_template='%s_origmvd.nii.gz',
4040
position=1,
4141
),

nipype/interfaces/dtitk/tests/test_auto_SVResampleTask.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def test_SVResampleTask_inputs():
1717
mandatory=False,
1818
position=1,
1919
),
20-
in_volume=dict(argstr='-in %s',
20+
in_file=dict(argstr='-in %s',
2121
exists=True,
2222
mandatory=True,
2323
position=0,
@@ -30,7 +30,7 @@ def test_SVResampleTask_inputs():
3030
out_path=dict(argstr='-out %s',
3131
exists=True,
3232
mandatory=False,
33-
name_source='in_volume',
33+
name_source='in_file',
3434
name_template='%s_resampled.nii.gz',
3535
position=3,
3636
),

nipype/interfaces/dtitk/tests/test_auto_TVResampleTask.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def test_TVResampleTask_inputs():
1717
mandatory=False,
1818
position=1,
1919
),
20-
in_tensor=dict(argstr='-in %s',
20+
in_file=dict(argstr='-in %s',
2121
exists=True,
2222
mandatory=True,
2323
position=0,
@@ -30,7 +30,7 @@ def test_TVResampleTask_inputs():
3030
out_path=dict(argstr='-out %s',
3131
exists=True,
3232
mandatory=False,
33-
name_source='in_volume',
33+
name_source='in_file',
3434
name_template='%s_resampled.nii.gz',
3535
position=3,
3636
),

nipype/interfaces/dtitk/tests/test_auto_TVtoolTask.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ def test_TVtoolTask_inputs():
1212
ignore_exception=dict(nohash=True,
1313
usedefault=True,
1414
),
15-
in_flag=dict(argstr='-%s',
15+
in_file=dict(argstr='-in %s',
1616
exists=True,
1717
mandatory=False,
18-
position=1,
18+
position=0,
1919
),
20-
in_tensor=dict(argstr='-in %s',
20+
in_flag=dict(argstr='-%s',
2121
exists=True,
2222
mandatory=False,
23-
position=0,
23+
position=1,
2424
),
2525
terminal_output=dict(nohash=True,
2626
),

0 commit comments

Comments
 (0)