Skip to content
Merged
Changes from all commits
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 fsspec/tests/test_parquet.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def test_open_parquet_file(
with open(path, "wb") as f:
f.write(b"0" * file_size)

if footer_sample_size == 8:
if footer_sample_size == 8 and columns is not None:
# We know 8 bytes is too small to include
# the footer metadata, so there should NOT
# be a key for the last 8 bytes of the file
Expand Down
Loading