Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
joseph-isaacs committed Nov 13, 2024
1 parent 5496c99 commit 642928e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion datafusion/functions/src/datetime/to_local_time.rs
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,7 @@ mod tests {
fn test_to_local_time_helper(input: ScalarValue, expected: ScalarValue) {
let res = ToLocalTimeFunc::new()
.invoke_with_args(ScalarFunctionArgs {
args: &vec![ColumnarValue::Scalar(input)],
args: &[ColumnarValue::Scalar(input)],
number_rows: 1,
return_type: &expected.data_type(),
})
Expand Down
1 change: 0 additions & 1 deletion datafusion/functions/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,6 @@ pub mod test {
}

use arrow::datatypes::DataType;
use datafusion_expr::ScalarFunctionArgs;
#[allow(unused_imports)]
pub(crate) use test_function;

Expand Down

0 comments on commit 642928e

Please sign in to comment.