Skip to content

Commit

Permalink
Update tests/test_cesm_fv.py
Browse files Browse the repository at this point in the history
Co-authored-by: Zachary Moon <[email protected]>
  • Loading branch information
blychs and zmoon authored Aug 15, 2024
1 parent 6847602 commit ac6551c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_cesm_fv.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ def _test_ds(ds):
assert set(ds.dims) == {"time", "x", "y", "z"}

# Test coordinates
assert "lat" not in ds.data_vars
assert "lon" not in ds.data_vars
assert "lat" not in ds.variables
assert "lon" not in ds.variables
assert "latitude" in ds.coords
assert "longitude" in ds.coords
assert np.all(ds.latitude.values[0, :] == ds.latitude.values[0, 0])
Expand Down

0 comments on commit ac6551c

Please sign in to comment.