Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
raphael committed Jan 23, 2023
1 parent 431ed4d commit 1b9dd99
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xesmf/tests/test_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ def test_simple_tripolar_grid():
assert lon.min() >= -300.0
assert lon.max() <= 360.0 - 300.0
assert lat.min() >= -90
assert lat.max() <= -90
assert lat.max() <= 90

lon, lat = xe.util.simple_tripolar_grid(180, 90, lat_cap=60, lon_cut=-300.0)

assert lon.min() >= -300.0
assert lon.max() <= 360.0 - 300.0
assert lat.min() >= -90
assert lat.max() <= -90
assert lat.max() <= 90

0 comments on commit 1b9dd99

Please sign in to comment.