From d8133b175ef36c9776b53a44f6267b136eb71d1b Mon Sep 17 00:00:00 2001 From: Paul McCarthy <pauld.mccarthy@gmail.com> Date: Mon, 13 Jun 2016 15:48:34 +0100 Subject: [PATCH] calcExpansion test coverage reduced a bit so it doesn't take an insane amount of time to run. --- test/test_imagewrapper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_imagewrapper.py b/test/test_imagewrapper.py index f235e006c..2280fabc0 100644 --- a/test/test_imagewrapper.py +++ b/test/test_imagewrapper.py @@ -259,7 +259,7 @@ def _test_expansion(coverage, slices, volumes, expansions): # coverage, or in one of the expansions. dimranges = [] for d in range(ndims): - dimranges.append(np.arange(nc[0, d], nc[1, d])) + dimranges.append(np.linspace(nc[0, d], nc[1, d], nc[1, d] / 5, dtype=np.uint32)) points = it.product(*dimranges) -- GitLab