From ed07f301f27385e2d74780824787754bfe518c33 Mon Sep 17 00:00:00 2001 From: Luca Carniato Date: Thu, 17 Oct 2024 15:13:43 +0200 Subject: [PATCH] Correct tests after fix in invert delete (#191 | GRIDEDIT-1452) --- tests/test_mesh2d_basics.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/test_mesh2d_basics.py b/tests/test_mesh2d_basics.py index c2262eec..06a38f7a 100644 --- a/tests/test_mesh2d_basics.py +++ b/tests/test_mesh2d_basics.py @@ -446,16 +446,16 @@ def test_mesh2d_get_node_index_no_node_in_search_radius( ( True, DeleteMeshOption.INSIDE_NOT_INTERSECTED, - 16, - 24, - 9, + 4, + 4, + 1, ), ( True, DeleteMeshOption.INSIDE_AND_INTERSECTED, - 4, - 4, - 1, + 16, + 24, + 9, ), ( False,