4
4
5
5
def test_ConvertScalarImageToRGB_inputs ():
6
6
input_map = dict (
7
- args = dict (argstr = "%s" , ),
8
- colormap = dict (argstr = "%s" , mandatory = True , position = 4 , usedefault = True , ),
9
- custom_color_map_file = dict (argstr = "%s" , position = 5 , usedefault = True , ),
10
- dimension = dict (argstr = "%d" , mandatory = True , position = 0 , usedefault = True , ),
11
- environ = dict (nohash = True , usedefault = True , ),
12
- input_image = dict (argstr = "%s" , extensions = None , mandatory = True , position = 1 , ),
13
- mask_image = dict (argstr = "%s" , extensions = None , position = 3 , usedefault = True , ),
14
- maximum_RGB_output = dict (argstr = "%d" , position = 9 , usedefault = True , ),
15
- maximum_input = dict (argstr = "%d" , mandatory = True , position = 7 , ),
16
- minimum_RGB_output = dict (argstr = "%d" , position = 8 , usedefault = True , ),
17
- minimum_input = dict (argstr = "%d" , mandatory = True , position = 6 , ),
18
- num_threads = dict (nohash = True , usedefault = True , ),
19
- output_image = dict (argstr = "%s" , position = 2 , usedefault = True , ),
7
+ args = dict (argstr = "%s" ),
8
+ colormap = dict (argstr = "%s" , mandatory = True , position = 4 ),
9
+ custom_color_map_file = dict (argstr = "%s" , position = 5 , usedefault = True ),
10
+ dimension = dict (argstr = "%d" , mandatory = True , position = 0 , usedefault = True ),
11
+ environ = dict (nohash = True , usedefault = True ),
12
+ input_image = dict (argstr = "%s" , extensions = None , mandatory = True , position = 1 ),
13
+ mask_image = dict (argstr = "%s" , extensions = None , position = 3 , usedefault = True ),
14
+ maximum_RGB_output = dict (argstr = "%d" , position = 9 , usedefault = True ),
15
+ maximum_input = dict (argstr = "%d" , mandatory = True , position = 7 ),
16
+ minimum_RGB_output = dict (argstr = "%d" , position = 8 , usedefault = True ),
17
+ minimum_input = dict (argstr = "%d" , mandatory = True , position = 6 ),
18
+ num_threads = dict (nohash = True , usedefault = True ),
19
+ output_image = dict (argstr = "%s" , position = 2 , usedefault = True ),
20
20
)
21
21
inputs = ConvertScalarImageToRGB .input_spec ()
22
22
@@ -26,7 +26,7 @@ def test_ConvertScalarImageToRGB_inputs():
26
26
27
27
28
28
def test_ConvertScalarImageToRGB_outputs ():
29
- output_map = dict (output_image = dict (extensions = None ,), )
29
+ output_map = dict (output_image = dict (extensions = None ) )
30
30
outputs = ConvertScalarImageToRGB .output_spec ()
31
31
32
32
for key , metadata in list (output_map .items ()):
0 commit comments