From 3dbedd6cd9a2168cb3fbbb1aa823c16224069c8a Mon Sep 17 00:00:00 2001
From: Paul McCarthy <pauldmccarthy@gmail.com>
Date: Tue, 3 Sep 2019 14:02:37 +0100
Subject: [PATCH] TEST: Reduce tolerance on unstable test

---
 tests/test_transform/test_nonlinear.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/test_transform/test_nonlinear.py b/tests/test_transform/test_nonlinear.py
index 694162c3b..b161f4f23 100644
--- a/tests/test_transform/test_nonlinear.py
+++ b/tests/test_transform/test_nonlinear.py
@@ -132,7 +132,7 @@ def test_convertDeformationType():
     gotconvrel2 = nonlinear.convertDeformationType(relfield, 'absolute')
     gotconvabs2 = nonlinear.convertDeformationType(absfield, 'relative')
 
-    tol = dict(atol=1e-5, rtol=1e-5)
+    tol = dict(atol=1e-3, rtol=1e-3)
 
     assert np.all(np.isclose(gotconvrel1, absfield.data, **tol))
     assert np.all(np.isclose(gotconvabs1, relfield.data, **tol))
-- 
GitLab