Skip to content

Commit b6bf5fe

Browse files
committed
fix: correct typo in file extension check for parquet files in test_write_compressed_parquet
1 parent 67520e5 commit b6bf5fe

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

python/tests/test_dataframe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1329,7 +1329,7 @@ def test_write_compressed_parquet(df, tmp_path, compression, compression_level):
13291329
# test that the actual compression scheme is the one written
13301330
for _root, _dirs, files in os.walk(path):
13311331
for file in files:
1332-
if file endswith(".parquet"):
1332+
if file.endswith(".parquet"):
13331333
metadata = pq.ParquetFile(tmp_path / file).metadata.to_dict()
13341334
for row_group in metadata["row_groups"]:
13351335
for columns in row_group["columns"]:

0 commit comments

Comments
 (0)