Skip to content

Commit

Permalink
chore: move imports to top-level
Browse files Browse the repository at this point in the history
  • Loading branch information
d-v-b committed May 10, 2024
1 parent 7c6cfb4 commit 17997f8
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions tests/v3/test_storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
from pathlib import Path
import pytest

from zarr.testing.store import StoreTests
from zarr.store.memory import MemoryStore


@pytest.mark.parametrize("auto_mkdir", (True, False))
def test_local_store_init(tmpdir, auto_mkdir: bool) -> None:
Expand Down Expand Up @@ -792,10 +795,6 @@ async def test_local_store_set(tmpdir, path: str, auto_mkdir: bool) -> None:
# storage_transformer_methods.discard("__init__")
# storage_transformer_methods.discard("get_config")
# assert storage_transformer_methods == store_v3_methods
import pytest

from zarr.testing.store import StoreTests
from zarr.store.memory import MemoryStore


class TestMemoryStore(StoreTests):
Expand Down

0 comments on commit 17997f8

Please sign in to comment.