Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/v3/test_indexing.py
Original file line number Diff line number Diff line change
Expand Up @@ -1783,7 +1783,7 @@ async def test_accessed_chunks(
# Combine and generate the cartesian product to determine the chunks keys that
# will be accessed
chunks_accessed = [
".".join([str(ci) for ci in comb]) for comb in itertools.product(*chunks_per_dim)
".".join(map(str, comb)) for comb in itertools.product(*chunks_per_dim)
]

counts_before = store.counter.copy()
Expand Down