Skip to content

Commit 37b048a

Browse files
committed
Fix clippy.
1 parent 66fed22 commit 37b048a

File tree

1 file changed

+7
-10
lines changed

1 file changed

+7
-10
lines changed

crates/iceberg/src/arrow/record_batch_transformer.rs

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -617,17 +617,14 @@ mod test {
617617
NestedField::optional(
618618
3,
619619
"struct_col",
620-
Type::Struct(
621-
crate::spec::StructType::new(vec![
622-
NestedField::optional(
623-
100,
624-
"inner_field",
625-
Type::Primitive(PrimitiveType::String),
626-
)
627-
.into(),
628-
])
620+
Type::Struct(crate::spec::StructType::new(vec![
621+
NestedField::optional(
622+
100,
623+
"inner_field",
624+
Type::Primitive(PrimitiveType::String),
625+
)
629626
.into(),
630-
),
627+
])),
631628
)
632629
.into(),
633630
])

0 commit comments

Comments
 (0)