Skip to content

Commit

Permalink
fix for numpy 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ocefpaf committed May 28, 2024
1 parent efd7233 commit fcefe06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_qartod.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def test_location(self):
Ensure that longitudes and latitudes are within reasonable bounds.
"""
lon = [ 80.0, -78.5, 500.500]
lat = [np.NaN, 50.0, -60.0]
lat = [np.nan, 50.0, -60.0]

npt.assert_array_equal(
qartod.location_test(lon=lon, lat=lat),
Expand Down

0 comments on commit fcefe06

Please sign in to comment.