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

TEST: Reduce tolerance on unstable test

parent 8316f5c4
No related branches found
No related tags found
No related merge requests found
...@@ -132,7 +132,7 @@ def test_convertDeformationType(): ...@@ -132,7 +132,7 @@ def test_convertDeformationType():
gotconvrel2 = nonlinear.convertDeformationType(relfield, 'absolute') gotconvrel2 = nonlinear.convertDeformationType(relfield, 'absolute')
gotconvabs2 = nonlinear.convertDeformationType(absfield, 'relative') 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(gotconvrel1, absfield.data, **tol))
assert np.all(np.isclose(gotconvabs1, relfield.data, **tol)) assert np.all(np.isclose(gotconvabs1, relfield.data, **tol))
......
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