Skip to content

Commit 68bea0e

Browse files
committed
format
1 parent f0cf700 commit 68bea0e

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

datafusion/expr/src/logical_plan/builder.rs

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2592,11 +2592,12 @@ mod tests {
25922592
return plan_err!("Plan should have returned an DataFusionError::Internal");
25932593
};
25942594

2595-
let desc = desc.split(DataFusionError::BACK_TRACE_SEP)
2596-
.collect::<Vec<&str>>()
2597-
.first()
2598-
.unwrap_or(&"")
2599-
.to_string();
2595+
let desc = desc
2596+
.split(DataFusionError::BACK_TRACE_SEP)
2597+
.collect::<Vec<&str>>()
2598+
.first()
2599+
.unwrap_or(&"")
2600+
.to_string();
26002601

26012602
assert_snapshot!(desc, @"trying to unnest on invalid data type UInt32");
26022603

0 commit comments

Comments
 (0)