Skip to content

Commit

Permalink
remove rogue print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
TomNicholas committed Mar 26, 2024
1 parent 11cc55d commit 2f654ed
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions virtualizarr/tests/test_xarray.py
Original file line number Diff line number Diff line change
Expand Up @@ -245,8 +245,7 @@ def test_no_indexes(self, netcdf4_file):
def test_create_default_indexes(self, netcdf4_file):
vds = open_virtual_dataset(netcdf4_file, indexes=None)
ds = xr.open_dataset(netcdf4_file)
print(vds.indexes)
print(ds.indexes)

# TODO use xr.testing.assert_identical(vds.indexes, ds.indexes) instead once class supported by assertion comparison, see https://github.com/pydata/xarray/issues/5812
assert index_mappings_equal(vds.xindexes, ds.xindexes)

Expand Down

0 comments on commit 2f654ed

Please sign in to comment.