From be80182f1c1c978074b4e9e873fcee83615f6f81 Mon Sep 17 00:00:00 2001 From: David Schaefer <david.schaefer@ufz.de> Date: Tue, 10 Jan 2023 08:07:02 +0100 Subject: [PATCH] fix order warning --- tests/funcs/test_resampling.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/funcs/test_resampling.py b/tests/funcs/test_resampling.py index ebed5178e..c5dbd1570 100644 --- a/tests/funcs/test_resampling.py +++ b/tests/funcs/test_resampling.py @@ -124,7 +124,7 @@ def test_gridInterpolation(data, method, fill_history): res = qc.interpolate( field, freq, - order=10, + order=9, method=method, downcast_interpolation=True, ) -- GitLab