Skip to content

Commit

Permalink
fix: format code for unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
hengfeiyang committed Oct 12, 2023
1 parent c6fcc5b commit 06f7369
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parquet/src/arrow/async_reader/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1657,7 +1657,7 @@ mod tests {
assert_eq!(metadata.num_row_groups(), 1);
let row_group = metadata.row_group(0);
let column = row_group.column(0);
assert!(column.bloom_filter_length().is_some() == with_length);
assert_eq!(column.bloom_filter_length().is_some(), with_length);

let async_reader = TestReader {
data: data.clone(),
Expand Down

0 comments on commit 06f7369

Please sign in to comment.