Skip to content

Commit

Permalink
Satisfy Clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
bgjackma committed Sep 25, 2024
1 parent 9a2d8cf commit 9c0ed8a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions datafusion/functions-aggregate/src/grouping.rs
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ mod tests {
grouping_ids: vec![],
expr_indices: vec![5],
};
let res = grouping.mask_to_id(&vec![false]);
assert_eq!(res.is_err(), true)
let res = grouping.mask_to_id(&[false]);
assert!(res.is_err())
}
}

0 comments on commit 9c0ed8a

Please sign in to comment.