Skip to content

Commit

Permalink
fix linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
SarahAlidoost committed Nov 15, 2024
1 parent 09ddc53 commit d03b0f4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/test_datasets/test_fapar_lai.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def test_load(self, dummy_dir):

# we assert the regridded coordinates
expected_lat = [59.7, 59.8, 59.9]
expected_lon = [0. , 0.1, 0.2]
expected_lon = [0.0 , 0.1, 0.2]

np.testing.assert_allclose(ds.latitude.values, expected_lat)
np.testing.assert_allclose(ds.longitude.values, expected_lon)
Expand Down
2 changes: 1 addition & 1 deletion tests/test_datasets/test_prism_dem.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def test_load(self, dummy_dir):

# we assert the regridded coordinates
expected_lat = [59.7 , 59.95]
expected_lon = [0. , 0.25]
expected_lon = [0.0 , 0.25]

np.testing.assert_allclose(ds["latitude"].values, expected_lat)
np.testing.assert_allclose(ds["longitude"].values, expected_lon)
Expand Down

0 comments on commit d03b0f4

Please sign in to comment.