Skip to content

Commit

Permalink
Nit: tiny for loop refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
Sreesh Maheshwar committed Jan 9, 2025
1 parent e47e18f commit 45391de
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/integration/test_writes/test_writes.py
Original file line number Diff line number Diff line change
Expand Up @@ -307,9 +307,9 @@ def test_object_storage_data_files(
assert len(parts) == 11

# Entropy binary directories should have been injected
for i in range(6, 10):
assert parts[i]
assert all(c in "01" for c in parts[i])
for dir_name in parts[6:10]:
assert dir_name
assert all(c in "01" for c in dir_name)


@pytest.mark.integration
Expand Down

0 comments on commit 45391de

Please sign in to comment.