Skip to content

Commit 512bdaa

Browse files
authored
Update test_indexing.py
1 parent 4cbb17e commit 512bdaa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/v3/test_indexing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1783,7 +1783,7 @@ async def test_accessed_chunks(
17831783
# Combine and generate the cartesian product to determine the chunks keys that
17841784
# will be accessed
17851785
chunks_accessed = [
1786-
".".join([str(ci) for ci in comb]) for comb in itertools.product(*chunks_per_dim)
1786+
".".join(map(str, comb)) for comb in itertools.product(*chunks_per_dim)
17871787
]
17881788

17891789
counts_before = store.counter.copy()

0 commit comments

Comments
 (0)