Skip to content

Commit

Permalink
Remove entropy check
Browse files Browse the repository at this point in the history
  • Loading branch information
Sreesh Maheshwar committed Dec 20, 2024
1 parent d3e0c0f commit 00917e9
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions tests/table/test_locations.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,6 @@ def test_object_storage_injects_entropy() -> None:
# Entropy directories in the middle
assert parts[-1] == "test.parquet"

# Entropy directories should be 4 binary names of lengths 4, 4, 4, 8.
for i in range(2, 6):
assert len(parts[i]) == (8 if i == 5 else 4)
assert all(c in "01" for c in parts[i])


@pytest.mark.parametrize("object_storage", [True, False])
def test_partition_value_in_path(object_storage: bool) -> None:
Expand Down

0 comments on commit 00917e9

Please sign in to comment.