Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
davidhewitt committed Sep 10, 2024
1 parent 71ec2aa commit 08b4cd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/fuzz/fuzz_targets/compare_to_serde.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ pub fn values_equal(jiter_value: &JiterValue, serde_value: &SerdeValue) -> bool
if o1.len() != o2.len() {
return false;
}
for (k1, v1) in o1.iter_unique() {
for (k1, v1) in o1.iter() {
if let Some(v2) = o2.get::<str>(k1.as_ref()) {
if !values_equal(v1, v2) {
return false;
Expand Down

0 comments on commit 08b4cd3

Please sign in to comment.