Skip to content

Commit

Permalink
FIX: adjust tests for numpy 2
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfidan committed Jun 24, 2024
1 parent a7b7bce commit d0b04cb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/filters/test_gatefilter.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
# more
fdata2 = np.ma.masked_array(fdata, copy=True)
fdata2[2, 2] = np.ma.masked
fdata2[3, 3] = np.NAN
fdata2[4, 4] = np.PINF
fdata2[5, 5] = np.NINF
fdata2[3, 3] = np.nan
fdata2[4, 4] = np.inf
fdata2[5, 5] = -np.inf
radar.add_field("test_field2", {"data": fdata2})


Expand Down

0 comments on commit d0b04cb

Please sign in to comment.