File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
pydra/tasks/mrtrix3/tests Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
from pathlib import Path
2
2
import pytest
3
3
from pydra .tasks .mrtrix3 .utils import MRConvert
4
- from medimages4tests .dicom .mri .dwi .siemens .skyra .syngo_d13c import (
5
- sample_image as sample_dwi_dicom ,
4
+ from medimages4tests .dummy . dicom .mri .dwi .siemens .skyra .syngo_d13c import (
5
+ get_image as get_dwi_dicom ,
6
6
)
7
- from medimages4tests .nifti import sample_image as sample_nifti
7
+ from medimages4tests .dummy . nifti import get_image as get_nifti
8
8
9
9
10
10
@pytest .fixture
11
11
def dwi_dicom_dataset ():
12
- return sample_dwi_dicom ()
12
+ return get_dwi_dicom ()
13
13
14
14
15
15
@pytest .fixture
16
16
def nifti_dataset (work_dir ):
17
- return sample_nifti (work_dir / "nifti" , compressed = True )
17
+ return get_nifti (work_dir / "nifti" , compressed = True )
18
18
19
19
20
20
def test_mrconvert_default_out_file (nifti_dataset ):
You can’t perform that action at this time.
0 commit comments