Skip to content
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.

Commit

Permalink
Fixed lints and test.
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgecarleitao committed Sep 30, 2021
1 parent 3e07d5f commit c098494
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
5 changes: 2 additions & 3 deletions tests/it/array/equal/fixed_size_list.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
use arrow2::{
array::{FixedSizeListArray, MutableFixedSizeListArray, MutablePrimitiveArray, TryExtend},
datatypes::DataType,
use arrow2::array::{
FixedSizeListArray, MutableFixedSizeListArray, MutablePrimitiveArray, TryExtend,
};

use super::test_equal;
Expand Down
1 change: 0 additions & 1 deletion tests/it/array/fixed_size_list/mutable.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
use arrow2::array::*;
use arrow2::datatypes::DataType;

#[test]
fn primitive() {
Expand Down
1 change: 0 additions & 1 deletion tests/it/array/growable/fixed_size_list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ fn null_offset() {
Some(vec![Some(6i32), Some(7), Some(8)]),
];
let array = create_list_array(data);
return;
let array = array.slice(1, 2);

let mut a = GrowableFixedSizeList::new(vec![&array], false, 0);
Expand Down

0 comments on commit c098494

Please sign in to comment.