Skip to content

Commit

Permalink
Another day, another clippy lint
Browse files Browse the repository at this point in the history
  • Loading branch information
justsmth committed Nov 14, 2024
1 parent 7ec5a2e commit 89c9b55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aws-lc-rs/src/ed25519.rs
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ mod tests {
let public_key = key_pair.public_key();
let signature = key_pair.sign(MESSAGE);
let unparsed_public_key = UnparsedPublicKey::new(&ED25519, public_key.as_ref());
let _ = unparsed_public_key
unparsed_public_key
.verify(MESSAGE, signature.as_ref())
.unwrap();
}
Expand Down

0 comments on commit 89c9b55

Please sign in to comment.