Skip to content

Commit 5ff490c

Browse files
committed
FIX: Update out_dir path in test_bids
1 parent 2b463e3 commit 5ff490c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

petprep/interfaces/tests/test_bids.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def test_BIDSURI():
99
'raw': '/data',
1010
'deriv-0': '/data/derivatives/source-1',
1111
}
12-
out_dir = '/data/derivatives/fmriprep'
12+
out_dir = '/data/derivatives/petprep'
1313

1414
# A single element as a string
1515
interface = BIDSURI(

petprep/utils/bids.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ def _find_nearest_path(path_dict, input_path):
378378
--------
379379
>>> from pathlib import Path
380380
>>> path_dict = {
381-
... 'bids::': Path('/data/derivatives/fmriprep'),
381+
... 'bids::': Path('/data/derivatives/petprep'),
382382
... 'bids:raw:': Path('/data'),
383383
... 'bids:deriv-0:': Path('/data/derivatives/source-1'),
384384
... }

0 commit comments

Comments
 (0)