From e4db860d0c8bcf9a94084f010d72ca95a8b34ea3 Mon Sep 17 00:00:00 2001 From: Raphael Hagen Date: Thu, 2 May 2024 17:16:05 -0600 Subject: [PATCH] test_anon update --- virtualizarr/tests/test_xarray.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/virtualizarr/tests/test_xarray.py b/virtualizarr/tests/test_xarray.py index c27e2d88..15a7b70b 100644 --- a/virtualizarr/tests/test_xarray.py +++ b/virtualizarr/tests/test_xarray.py @@ -277,7 +277,7 @@ def test_combine_by_coords(self, netcdf4_files): @pytest.mark.parametrize("indexes", [None, {}], ids=["None index", "empty dict index"]) def test_anon_read_s3(filetype, indexes): fpath = 's3://carbonplan-share/virtualizarr/local.nc' - assert open_virtual_dataset(fpath, filetype=filetype, indexes=indexes, reader_options={'storage_options': {'anon': True},'remote_options': {'anon': True}}) + assert open_virtual_dataset(fpath, filetype=filetype, indexes=indexes, reader_options={'storage_options': {'anon': True}}) class TestLoadVirtualDataset: