Skip to content

Commit

Permalink
fix the test
Browse files Browse the repository at this point in the history
  • Loading branch information
SarahAlidoost committed Apr 12, 2024
1 parent 0666878 commit fc784c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_stm.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit fc784c8

Please sign in to comment.