Skip to content

Commit a75a59a

Browse files
committed
fix unbound local error in test
1 parent 7765723 commit a75a59a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_array.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1156,7 +1156,7 @@ async def test_default_filters_compressors(
11561156
if default_compressors is None:
11571157
expected_compressors = ()
11581158
else:
1159-
expected_compressors = (expected_compressors,) # type: ignore[assignment]
1159+
expected_compressors = (default_compressors,) # type: ignore[assignment]
11601160
expected_serializer = None
11611161
else:
11621162
raise ValueError(f"Invalid zarr_format: {zarr_format}")

0 commit comments

Comments
 (0)