Skip to content

Commit 5e0da46

Browse files
committed
rebase master
1 parent c2ffb00 commit 5e0da46

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

arrow-array/src/array/list_view_array.rs

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -744,12 +744,6 @@ mod tests {
744744
#[test]
745745
#[should_panic(expected = "index out of bounds: the len is 9 but the index is 10")]
746746
fn test_list_view_array_index_out_of_bound() {
747-
// Construct a value array
748-
let value_data = ArrayData::builder(DataType::Int32)
749-
.len(10)
750-
.add_buffer(Buffer::from_slice_ref([0, 1, 2, 3, 4, 5, 6, 7, 8, 9]))
751-
.build()
752-
.unwrap();
753747

754748
// 01011001 00000001
755749
let mut null_bits: [u8; 2] = [0; 2];
@@ -817,11 +811,6 @@ mod tests {
817811

818812
#[test]
819813
fn test_list_view_array_offsets_need_not_start_at_zero() {
820-
let value_data = ArrayData::builder(DataType::Int32)
821-
.len(8)
822-
.add_buffer(Buffer::from_slice_ref([0, 1, 2, 3, 4, 5, 6, 7]))
823-
.build()
824-
.unwrap();
825814

826815
let field = Arc::new(Field::new("item", DataType::Int32, true));
827816
let sizes = ScalarBuffer::from(vec![0i32, 0, 3]);

0 commit comments

Comments
 (0)