Skip to content

Commit

Permalink
Fix asserts
Browse files Browse the repository at this point in the history
  • Loading branch information
emfdavid committed Nov 30, 2023
1 parent 37c65ce commit cf63ed4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kerchunk/tests/test_grib.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@ def test_grib_tree():
result = grib_tree(corrected_msg_groups)
fs = fsspec.filesystem("reference", fo=result)
zg = zarr.open_group(fs.get_mapper(""))
isinstance(zg["refc/instant/atmosphere/refc"], zarr.Array)
isinstance(zg["vbdsf/avg/surface/vbdsf"], zarr.Array)
assert isinstance(zg["refc/instant/atmosphere/refc"], zarr.Array)
assert isinstance(zg["vbdsf/avg/surface/vbdsf"], zarr.Array)
assert (
zg["vbdsf/avg/surface"].attrs["coordinates"]
== "surface latitude longitude time valid_time step"
Expand Down

0 comments on commit cf63ed4

Please sign in to comment.