From 35a65aeef34192b644c9a3afaa13060dee3be0ad Mon Sep 17 00:00:00 2001 From: Horea Christian Date: Sun, 21 Jul 2013 05:55:02 +0200 Subject: [PATCH] Resolved faulty montage2d import. --- skimage/util/tests/test_montage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skimage/util/tests/test_montage.py b/skimage/util/tests/test_montage.py index 9de3f3cd..450ab0d2 100644 --- a/skimage/util/tests/test_montage.py +++ b/skimage/util/tests/test_montage.py @@ -58,7 +58,7 @@ def test_grid_shape(): height, width = 2, 2 arr_in = np.arange(n_images * height * width, dtype=np.float32) arr_in = arr_in.reshape(n_images, height, width) - arr_out = montage.montage2d(arr_in, grid_shape=(3,2)) + arr_out = montage2d(arr_in, grid_shape=(3,2)) correct_arr_out = np.array( [[ 0., 1., 4., 5.], [ 2., 3., 6., 7.],