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
Next Next commit
Update test_indexing.py
  • Loading branch information
jakirkham authored Sep 24, 2024
commit 512bdaaf1d66c77f793c104ab94260e359021d0e
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