Skip to content

Commit

Permalink
update test
Browse files Browse the repository at this point in the history
  • Loading branch information
HammadB committed Mar 6, 2024
1 parent a5eb5d7 commit 1181f22
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions rust/worker/src/blockstore/arrow_blockfile/block/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -507,6 +507,12 @@ mod test {
)
.unwrap();
}

// Basic sanity check
let block_data = block_builder.build().unwrap();
assert_eq!(block_data.data.column(0).len(), num_entries);
assert_eq!(block_data.data.column(1).len(), num_entries);
assert_eq!(block_data.data.column(2).len(), num_entries);
}

#[test]
Expand Down

0 comments on commit 1181f22

Please sign in to comment.