From 248e1a784c96934a56ec09fb71d69b04768c239e Mon Sep 17 00:00:00 2001 From: Paul McCarthy <pauldmccarthy@gmail.com> Date: Sun, 8 Jul 2018 14:13:51 +0100 Subject: [PATCH] TEST: Nibabel/indexed_gzip updates broke some tests --- tests/test_image.py | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/tests/test_image.py b/tests/test_image.py index d7365f8d4..34380c802 100644 --- a/tests/test_image.py +++ b/tests/test_image.py @@ -30,6 +30,18 @@ from fsl.utils.tempdir import tempdir from . import make_random_image from . import make_dummy_file +try: + from unittest import mock +except ImportError: + import mock + + +try: + import indexed_gzip as igzip +except ImportError: + igzip = mock.MagicMock() + igzip.ZranError = mock.MagicMock() + def make_image(filename=None, imgtype=1, @@ -116,8 +128,8 @@ def test_load(): shouldRaise = [('notexist', fslpath.PathError), ('notexist.nii.gz', fslpath.PathError), ('ambiguous', fslpath.PathError), - ('notnifti', ImageFileError), - ('notnifti.nii.gz', ImageFileError)] + ('notnifti', (ImageFileError, igzip.ZranError)), + ('notnifti.nii.gz', (ImageFileError, igzip.ZranError))] with tempdir() as testdir: -- GitLab