Skip to content

Commit

Permalink
fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
xinlifoobar committed Jul 18, 2024
1 parent e5e809e commit 51f88f0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion datafusion/sql/tests/sql_integration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,10 @@ fn test_parse_options_value_normalization() {
assert_eq!(Some(&v.to_string()), options.get(*k));
});
}
_ => panic!("Expected Ddl(CreateExternalTable) or Copy(CopyTo) but got {:?}", plan),
_ => panic!(
"Expected Ddl(CreateExternalTable) or Copy(CopyTo) but got {:?}",
plan
),
}
} else {
assert_eq!(expected_plan, plan.unwrap_err().strip_backtrace());
Expand Down

0 comments on commit 51f88f0

Please sign in to comment.