Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
tustvold committed Jan 16, 2022
1 parent c7396ff commit abdc565
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion arrow/src/array/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2949,7 +2949,10 @@ mod tests {
builder.resize(20);

assert_eq!(builder.len, 20);
assert_eq!(builder.buffer.as_slice(), &[0b00001111, 0b00011000, 0b00000000]);
assert_eq!(
builder.buffer.as_slice(),
&[0b00001111, 0b00011000, 0b00000000]
);

builder.resize(5);
assert_eq!(builder.len, 5);
Expand Down

0 comments on commit abdc565

Please sign in to comment.