From b06913ccf80d836f93702eb4770743bd6c417200 Mon Sep 17 00:00:00 2001 From: Henrik Finsberg Date: Fri, 3 Jul 2026 18:04:36 +0200 Subject: [PATCH] Increase tolerance in test_geometry.py --- tests/test_geometry.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_geometry.py b/tests/test_geometry.py index ddf5889..4d53fe1 100644 --- a/tests/test_geometry.py +++ b/tests/test_geometry.py @@ -127,7 +127,7 @@ def test_2D_manifold(order, num_threads): mesh = dolfinx.mesh.create_mesh(comm, cells=cells, x=curved_nodes, e=c_el) tol_x = 5e-6 - tol_dist = 1e-7 + tol_dist = 2e-6 theta = np.linspace(0, 4 * np.pi, 3_016) rand = np.random.RandomState(42) R = rand.rand(len(theta))