From 9b9f7b5952a71859d2776b2b9d3ff892a6d80566 Mon Sep 17 00:00:00 2001 From: Gui-FernandesBR Date: Thu, 7 Dec 2023 01:49:06 -0300 Subject: [PATCH] MNT: Update interpolation method in linearly_interpolated_func --- tests/conftest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/conftest.py b/tests/conftest.py index 22b869bf0..0b72cd03d 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1109,11 +1109,11 @@ def linearly_interpolated_func(): Returns ------- Function - Piece-wise linearly interpolated, with constant extrapolation + Linearly interpolated Function, with constant extrapolation """ return Function( [[0, 0], [1, 7], [2, -3], [3, -1], [4, 3]], - interpolation="spline", + interpolation="linear", extrapolation="constant", )