From 29475705f7c4855c3a2c3ed09cf57a9f4cf3a9cb Mon Sep 17 00:00:00 2001 From: wpbonelli Date: Fri, 22 May 2026 05:32:05 -0700 Subject: [PATCH] test: relax grid comparison --- autotest/test_grid.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autotest/test_grid.py b/autotest/test_grid.py index d19347c30..9ff8a1608 100644 --- a/autotest/test_grid.py +++ b/autotest/test_grid.py @@ -1508,7 +1508,7 @@ def test_voronoi_grid(request, function_tmpdir, grid_case): # ensure proper number of cells. the grid may be slightly different # on different platforms depending which compiler triangle is built # with, so allow small variations. - tol = 10 if system() == "Windows" else 3 + tol = 10 assert abs(ncpl - gridprops["ncpl"]) <= tol assert len(invalid_cells) == 0