Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Kikkon committed May 18, 2024
1 parent 5e0da46 commit a2ba44d
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions arrow-array/src/array/list_view_array.rs
Original file line number Diff line number Diff line change
Expand Up @@ -744,7 +744,6 @@ mod tests {
#[test]
#[should_panic(expected = "index out of bounds: the len is 9 but the index is 10")]
fn test_list_view_array_index_out_of_bound() {

// 01011001 00000001
let mut null_bits: [u8; 2] = [0; 2];
bit_util::set_bit(&mut null_bits, 0);
Expand Down Expand Up @@ -811,7 +810,6 @@ mod tests {

#[test]
fn test_list_view_array_offsets_need_not_start_at_zero() {

let field = Arc::new(Field::new("item", DataType::Int32, true));
let sizes = ScalarBuffer::from(vec![0i32, 0, 3]);
let offsets = ScalarBuffer::from(vec![2i32, 2, 5]);
Expand Down

0 comments on commit a2ba44d

Please sign in to comment.