Skip to content

Commit

Permalink
chore: clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
Serial-ATA committed Nov 13, 2024
1 parent 3f8a3df commit 7a60338
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions blueprint-serde/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -525,7 +525,7 @@ mod sequences {
],
);

let field = to_field(&array).unwrap();
let field = to_field(array).unwrap();
assert_eq!(field, expected_array_field());
}

Expand Down Expand Up @@ -571,7 +571,7 @@ mod sequences {
],
);

let field = to_field(&tuple).unwrap();
let field = to_field(tuple).unwrap();
assert_eq!(field, expected_same_type_field());
}

Expand Down Expand Up @@ -618,7 +618,7 @@ mod sequences {
],
);

let field = to_field(&tuple).unwrap();
let field = to_field(tuple).unwrap();
assert_eq!(field, expected_different_type_field());
}

Expand Down

0 comments on commit 7a60338

Please sign in to comment.