From 17888e3e82194a4e75607570f8f9441e8b6f8787 Mon Sep 17 00:00:00 2001 From: ayushnag <35325113+ayushnag@users.noreply.github.com> Date: Mon, 22 Jul 2024 15:17:29 -0700 Subject: [PATCH] update test for https check --- 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 d0fe2e3b..ee03b8cd 100644 --- a/virtualizarr/tests/test_xarray.py +++ b/virtualizarr/tests/test_xarray.py @@ -376,7 +376,7 @@ def test_read_from_url(self, filetype, url): with pytest.raises(NotImplementedError): vds = open_virtual_dataset(url, reader_options={}, indexes={}) else: - vds = open_virtual_dataset(url, reader_options={}, indexes={}) + vds = open_virtual_dataset(url, indexes={}) assert isinstance(vds, xr.Dataset)