We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e78bda1 commit f864267Copy full SHA for f864267
nipype/interfaces/fsl/tests/test_base.py
@@ -13,8 +13,7 @@
13
@pytest.mark.skipif(no_fsl(), reason="fsl is not installed")
14
def test_fslversion():
15
ver = fsl.Info.version()
16
- ver = ver.split(".")
17
- assert ver[0] in ["4", "5"]
+ assert ver.split(".", 1)[0].isdigit()
18
19
20
0 commit comments