From c54d3abf1c047e312c16ede0fe9eb978e9a25f10 Mon Sep 17 00:00:00 2001 From: Patrick Shriwise Date: Thu, 26 Mar 2020 14:01:57 -0500 Subject: [PATCH] Adjust expected precision based on estimator. --- tests/regression_tests/unstructured_mesh/test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/regression_tests/unstructured_mesh/test.py b/tests/regression_tests/unstructured_mesh/test.py index 82ca6488ee..65216ccb88 100644 --- a/tests/regression_tests/unstructured_mesh/test.py +++ b/tests/regression_tests/unstructured_mesh/test.py @@ -209,7 +209,7 @@ class UnstructuredMeshTest(PyAPITestHarness): # we expect these results to be the same to within at least ten # decimal places - decimals = 8 + decimals = 10 if self.estimator == 'collision' else 8 np.testing.assert_array_almost_equal(unstructured_data, reg_mesh_data, decimals)