From f4abc48ec9d58012643db427913c39da0ea76add Mon Sep 17 00:00:00 2001 From: Joseph Hamman Date: Fri, 13 Dec 2024 13:44:05 -0500 Subject: [PATCH] fix store type --- tests/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/conftest.py b/tests/conftest.py index fea5cb56fd..ee31d0d071 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -87,7 +87,7 @@ def sync_store(request: pytest.FixtureRequest, tmp_path: LEGACY_PATH) -> Store: @dataclass class AsyncGroupRequest: zarr_format: ZarrFormat - store: Literal["local", "remote", "memory", "zip"] + store: Literal["local", "fsspec", "memory", "zip"] attributes: dict[str, Any] = field(default_factory=dict)