From 7c5b3c4c97d2de03849281e57f85e2bc0c29eea5 Mon Sep 17 00:00:00 2001 From: Antoine Lavenant Date: Thu, 3 Oct 2024 14:04:58 +0200 Subject: [PATCH] update test --- test/test_radius_assign.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test_radius_assign.py b/test/test_radius_assign.py index 9efa9ac..d4ea943 100755 --- a/test/test_radius_assign.py +++ b/test/test_radius_assign.py @@ -149,8 +149,8 @@ def func_test(pt): "limit_z_above, limit_z_below", [ (-1, -1), # no limit - (-1, 2), # limit below only - (2, -1), # limit above only + (-1, 1.75), # limit below only + (1.75, -1), # limit above only (0, -1), # take all points below only (-1, 0), # take all points above only (-0.5, 0.5),