From 754e1960ef537e8e1c4cc2bf1aa865a7703e6365 Mon Sep 17 00:00:00 2001 From: Christian Chwala Date: Fri, 6 Oct 2023 00:15:06 +0200 Subject: [PATCH] found the problem, incorrect input data in y --- pycomlink/tests/test_interpolator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pycomlink/tests/test_interpolator.py b/pycomlink/tests/test_interpolator.py index ed2828f..87cc780 100644 --- a/pycomlink/tests/test_interpolator.py +++ b/pycomlink/tests/test_interpolator.py @@ -76,7 +76,7 @@ def test_without_nans(self): zi = interpolator( x=np.array([1, 2, 3, 4, 5]), - y=np.array([2, 4, 3, 5, 1]), + y=np.array([2, 3, 3, 5, 3]), z=np.array([1, 2, 3, 4, 3]), xgrid=xi, ygrid=yi,