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 authored Jul 31, 2024
1 parent b41173f commit b2651b4
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 @@ -2209,7 +2209,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 b2651b4

Please sign in to comment.