Skip to content

Commit

Permalink
fix loading in test by etseidl
Browse files Browse the repository at this point in the history
Co-authored-by: Ed Seidl <etseidl@users.noreply.github.com>
  • Loading branch information
adriangb and etseidl committed Jul 31, 2024
1 parent b07d057 commit e2be8d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parquet/src/file/writer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2210,7 +2210,7 @@ mod tests {

let data = buf.into_inner().freeze();

let decoded_metadata = load_metadata_from_bytes(metadata.file_size, data).await;
let decoded_metadata = load_metadata_from_bytes(data.len(), data).await;

assert_eq!(metadata.metadata, decoded_metadata);
}
Expand Down

0 comments on commit e2be8d3

Please sign in to comment.