Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
paf31 committed Sep 10, 2024
1 parent 117e5f1 commit a661016
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ndc-test/src/test_cases/schema.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ pub async fn validate_schema<R: Reporter>(
for aggregate_function in scalar_type.aggregate_functions.values() {
match aggregate_function {
models::AggregateFunctionDefinition::Custom { result_type } => {
validate_type(schema, &result_type)
validate_type(schema, result_type)
}
_ => Ok(()),
}?
}?;
}

let mut has_equality = false;
Expand Down

0 comments on commit a661016

Please sign in to comment.