Skip to content
Snippets Groups Projects
Commit 77032cac authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

TEST: typo

parent b5b3efae
No related branches found
No related tags found
No related merge requests found
......@@ -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'])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment