Skip to content

Commit 52b54a8

Browse files
committed
format
1 parent adc3240 commit 52b54a8

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

tests/v3/test_codecs/test_sharding.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
ShardingCodec,
1414
ShardingCodecIndexLocation,
1515
TransposeCodec,
16-
Crc32cCodec,
1716
)
1817
from zarr.core.buffer import default_buffer_prototype
1918
from zarr.storage.common import StorePath
@@ -333,11 +332,11 @@ def test_pickle() -> None:
333332
assert pickle.loads(pickle.dumps(codec)) == codec
334333

335334

336-
@pytest.mark.parametrize("store", ("local", "memory"), indirect=["store"])
335+
@pytest.mark.parametrize("store", ["local", "memory"], indirect=["store"])
337336
@pytest.mark.parametrize(
338337
"index_location", [ShardingCodecIndexLocation.start, ShardingCodecIndexLocation.end]
339338
)
340-
async def test_sharding_2(store: Store, index_location: ShardingCodecIndexLocation) -> None:
339+
async def test_sharding2(store: Store, index_location: ShardingCodecIndexLocation) -> None:
341340
shape = (10, 2)
342341
data = np.ones(np.prod(shape), dtype="int32").reshape(shape)
343342
fill_value = 42

0 commit comments

Comments
 (0)