Skip to content

Commit a1aa0d4

Browse files
author
Shoshana Berleant
committed
better test
1 parent b822bbb commit a1aa0d4

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

nipype/interfaces/fsl/tests/test_preprocess.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import shutil
1111

1212
from nipype.testing import (assert_equal, assert_not_equal, assert_raises,
13-
skipif)
13+
skipif, assert_true)
1414

1515
from nipype.utils.filemanip import split_filename, filename_to_list
1616
from .. import preprocess as fsl
@@ -617,4 +617,5 @@ def test_first_genfname():
617617

618618
@skipif(no_fsl)
619619
def test_deprecation():
620-
fsl.ApplyXfm()
620+
interface = fsl.ApplyXfm()
621+
yield assert_true, isinstance(interface, fsl.ApplyXFM)

0 commit comments

Comments
 (0)