From 75253094d064bcbbdbec908688c811c036102d78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Boris=20Cl=C3=A9net?= Date: Fri, 13 Oct 2023 16:33:23 +0200 Subject: [PATCH] [TEST] stop using 08MQ in tests --- narps_open/pipelines/team_08MQ.py | 2 +- tests/test_runner.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/narps_open/pipelines/team_08MQ.py b/narps_open/pipelines/team_08MQ.py index 510236f0..4171682e 100644 --- a/narps_open/pipelines/team_08MQ.py +++ b/narps_open/pipelines/team_08MQ.py @@ -257,7 +257,7 @@ def get_preprocessing(self): #(, alignment_csf, [('', 'ref_file')]), # Outputs of preprocessing - (motion_correction, datasink, [('par_file', 'preprocessing.@par_file')]) + (motion_correction, data_sink, [('par_file', 'preprocessing.@par_file')]) ]) return preprocessing diff --git a/tests/test_runner.py b/tests/test_runner.py index 761347fc..bb2a62c3 100644 --- a/tests/test_runner.py +++ b/tests/test_runner.py @@ -195,7 +195,7 @@ def test_create(): # 3 - Instantiate a runner with a not implemented team id with raises(NotImplementedError): - PipelineRunner('08MQ') + PipelineRunner('1K0E') # 4 - Instantiate a runner with an implemented team id runner = PipelineRunner('2T6S')