@@ -77,7 +77,7 @@ def _run_interface(self, runtime):
77
77
78
78
def _list_outputs (self ):
79
79
outputs = self ._outputs ().get ()
80
- outputs ['output1' ] = self .inputs .input1
80
+ outputs ['output1' ] = self .inputs .input1
81
81
return outputs
82
82
83
83
@@ -123,7 +123,7 @@ def find_metrics(nodes, last_node):
123
123
return total_memory , total_threads
124
124
125
125
126
- def test_do_not_use_more_memory_then_specified ():
126
+ def test_no_more_memory_than_specified ():
127
127
LOG_FILENAME = 'callback.log'
128
128
my_logger = logging .getLogger ('callback' )
129
129
my_logger .setLevel (logging .DEBUG )
@@ -151,7 +151,7 @@ def test_do_not_use_more_memory_then_specified():
151
151
n1 .inputs .input1 = 1
152
152
153
153
pipe .run (plugin = 'MultiProc' ,
154
- plugin_args = {'memory ' : max_memory ,
154
+ plugin_args = {'memory_gb ' : max_memory ,
155
155
'status_callback' : log_nodes_cb })
156
156
157
157
@@ -182,7 +182,7 @@ def test_do_not_use_more_memory_then_specified():
182
182
os .remove (LOG_FILENAME )
183
183
184
184
@skipif (nib .runtime_profile == False )
185
- def test_do_not_use_more_threads_then_specified ():
185
+ def test_no_more_threads_than_specified ():
186
186
LOG_FILENAME = 'callback.log'
187
187
my_logger = logging .getLogger ('callback' )
188
188
my_logger .setLevel (logging .DEBUG )
0 commit comments