From fc784c82dbdd5423465b7c8ee7277d6ac5c5ef72 Mon Sep 17 00:00:00 2001 From: SarahAlidoost Date: Fri, 12 Apr 2024 13:18:52 +0200 Subject: [PATCH] fix the test --- tests/test_stm.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_stm.py b/tests/test_stm.py index bbb4d0e..b89a619 100644 --- a/tests/test_stm.py +++ b/tests/test_stm.py @@ -643,10 +643,10 @@ def test_enrich_from_point_nanmonotonic_coords(self, stmat, meteo_points): def test_enrich_from_point_duplicate_coords(self, stmat, meteo_points): # make the coordinates duplicates, - # now both locations 0 and 1 have the same coords but different - # temperature values + # now both locations 0 and 1 have the same coords and temperature values meteo_points["lon"][0] = 0.5 meteo_points["lat"][0] = 0.5 + meteo_points.temperature[1, :] = meteo_points.temperature[0, :] stmat["lon"][0] = 0.5 stmat["lat"][0] = 0.5