From 1b9dd9996dc902716383dc684f71559faffc79b3 Mon Sep 17 00:00:00 2001 From: raphael Date: Mon, 23 Jan 2023 11:55:12 -0500 Subject: [PATCH] fix test --- xesmf/tests/test_util.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xesmf/tests/test_util.py b/xesmf/tests/test_util.py index 4f9a9ad9..234d02dc 100644 --- a/xesmf/tests/test_util.py +++ b/xesmf/tests/test_util.py @@ -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