From 8acba8c94140852870776ea42cd69523ee95c010 Mon Sep 17 00:00:00 2001 From: Henrik Finsberg Date: Mon, 6 Jul 2026 14:41:02 +0200 Subject: [PATCH] Update tol-dist in the correct place --- tests/test_geometry.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_geometry.py b/tests/test_geometry.py index 4d53fe1..f35a5ba 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 = 2e-6 + tol_dist = 1e-7 theta = np.linspace(0, 4 * np.pi, 3_016) rand = np.random.RandomState(42) R = rand.rand(len(theta)) @@ -268,7 +268,7 @@ def test_1D_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))