File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -600,7 +600,7 @@ class ApplyXfm(ApplyXFM):
600
600
Use :py:class:`nipype.interfaces.fsl.ApplyXFM` instead
601
601
"""
602
602
def __init__ (self , ** inputs ):
603
- super (confounds . TSNR , self ).__init__ (** inputs )
603
+ super (ApplyXfm , self ).__init__ (** inputs )
604
604
warnings .warn (("This interface has been renamed since 0.12.1,"
605
605
" please use nipype.interfaces.fsl.ApplyXFM" ),
606
606
UserWarning )
Original file line number Diff line number Diff line change @@ -614,3 +614,7 @@ def test_first_genfname():
614
614
value = first ._gen_fname (name = 'original_segmentations' )
615
615
expected_value = os .path .abspath ('segment_all_none_origsegs.nii.gz' )
616
616
yield assert_equal , value , expected_value
617
+
618
+ @skipif (no_fsl )
619
+ def test_deprecation ():
620
+ fsl .ApplyXfm ()
You can’t perform that action at this time.
0 commit comments