From 77032cac1b30f0b837cbcd4929824271ed1cbe39 Mon Sep 17 00:00:00 2001 From: Paul McCarthy <pauldmccarthy@gmail.com> Date: Thu, 12 Dec 2019 11:50:58 +0000 Subject: [PATCH] TEST: typo --- tests/test_wrapperutils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_wrapperutils.py b/tests/test_wrapperutils.py index e4ffb90b2..dcf3f5fd6 100644 --- a/tests/test_wrapperutils.py +++ b/tests/test_wrapperutils.py @@ -232,7 +232,7 @@ def test_fileOrImage(): @wutils.fileOrImage('img1', 'img2', 'output') def func(img1, **kwargs): img1 = np.asanyarray(nib.load(img1).dataobj) - img2 = np.asanyarraynib.load(kwargs['img2']).dataobj) + img2 = np.asanyarray(nib.load(kwargs['img2']).dataobj) output = nib.nifti1.Nifti1Image(img1 * img2, np.eye(4)) nib.save(output, kwargs['output']) -- GitLab