Skip to content

Commit ee9f405

Browse files
authored
Merge pull request #1662 from shoshber/multiprocagain
TST multiproc test fix, part 2
2 parents 80c5984 + 612095e commit ee9f405

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nipype/interfaces/tests/test_runtime_profiler.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ def _run_cmdline_workflow(self, num_gb, num_threads):
279279

280280
# Run workflow
281281
plugin_args = {'n_procs' : num_threads,
282-
'memory' : num_gb,
282+
'memory_gb' : num_gb,
283283
'status_callback' : log_nodes_cb}
284284
wf.run(plugin='MultiProc', plugin_args=plugin_args)
285285

@@ -359,7 +359,7 @@ def _run_function_workflow(self, num_gb, num_threads):
359359

360360
# Run workflow
361361
plugin_args = {'n_procs' : num_threads,
362-
'memory' : num_gb,
362+
'memory_gb' : num_gb,
363363
'status_callback' : log_nodes_cb}
364364
wf.run(plugin='MultiProc', plugin_args=plugin_args)
365365

0 commit comments

Comments
 (0)