Skip to content

Commit

Permalink
fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
xinlifoobar committed Aug 5, 2024
1 parent 4d50a94 commit ca40299
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions datafusion/functions-aggregate/src/stddev.rs
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ mod tests {
let dfschema = DFSchema::empty();
let args1 = AccumulatorArgs {
data_type: &DataType::Float64,
schema: &schema,
schema,
dfschema: &dfschema,
ignore_nulls: false,
sort_exprs: &[],
Expand All @@ -340,7 +340,7 @@ mod tests {

let args2 = AccumulatorArgs {
data_type: &DataType::Float64,
schema: &schema,
schema,
dfschema: &dfschema,
ignore_nulls: false,
sort_exprs: &[],
Expand Down

0 comments on commit ca40299

Please sign in to comment.