File tree Expand file tree Collapse file tree 3 files changed +20
-2
lines changed Expand file tree Collapse file tree 3 files changed +20
-2
lines changed Original file line number Diff line number Diff line change @@ -341,7 +341,7 @@ def _list_outputs(self):
341
341
outputs [k ] = op .abspath (getattr (self .inputs , k ))
342
342
343
343
if isdefined (self .inputs .regress_poly ):
344
- outputs ['detrended_file' ] = op .abspath (self .inputs .detrended_file )
344
+ outputs ['detrended_file' ] = op .abspath (self .inputs .detrended_file )
345
345
return outputs
346
346
347
347
Original file line number Diff line number Diff line change 4
4
5
5
6
6
def test_TSNR_inputs ():
7
- input_map = dict (ignore_exception = dict (nohash = True ,
7
+ input_map = dict (detrended_file = dict (hash_files = False ,
8
+ usedefault = True ,
9
+ ),
10
+ ignore_exception = dict (nohash = True ,
8
11
usedefault = True ,
9
12
),
10
13
in_file = dict (mandatory = True ,
11
14
),
15
+ mean_file = dict (hash_files = False ,
16
+ usedefault = True ,
17
+ ),
12
18
regress_poly = dict (),
19
+ stddev_file = dict (hash_files = False ,
20
+ usedefault = True ,
21
+ ),
22
+ tsnr_file = dict (hash_files = False ,
23
+ usedefault = True ,
24
+ ),
13
25
)
14
26
inputs = TSNR .input_spec ()
15
27
Original file line number Diff line number Diff line change @@ -7,10 +7,16 @@ def test_DataSink_inputs():
7
7
input_map = dict (_outputs = dict (usedefault = True ,
8
8
),
9
9
base_directory = dict (),
10
+ bucket = dict (mandatory = False ,
11
+ trait_value = True ,
12
+ ),
10
13
container = dict (),
14
+ creds_path = dict (),
15
+ encrypt_bucket_keys = dict (),
11
16
ignore_exception = dict (nohash = True ,
12
17
usedefault = True ,
13
18
),
19
+ local_copy = dict (),
14
20
parameterization = dict (usedefault = True ,
15
21
),
16
22
regexp_substitutions = dict (),
You can’t perform that action at this time.
0 commit comments