Skip to content

Commit

Permalink
Towards #75 Remove stray print
Browse files Browse the repository at this point in the history
  • Loading branch information
ncpenke committed Oct 10, 2022
1 parent 783fe65 commit 6192b8c
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion arrow2_convert/tests/test_struct.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ fn test_optional_struct_array() {

let original_array = vec![Some(Foo { field: 0 }), None, Some(Foo { field: 10 })];
let b: Box<dyn Array> = original_array.try_into_arrow().unwrap();
println!("{:?}", b.data_type());
let round_trip: Vec<Option<Foo>> = b.try_into_collection().unwrap();
assert_eq!(original_array, round_trip);
}
Expand Down

0 comments on commit 6192b8c

Please sign in to comment.