Skip to content

Commit

Permalink
chore: fix clippy warning
Browse files Browse the repository at this point in the history
  • Loading branch information
raimundo-henriques authored and zeitgeist committed Dec 21, 2023
1 parent 8d7b5e0 commit 1ea6e0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion endpoint/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,7 @@ fn verify_token_signature_test() {

let jwk = jwks.keys.first().unwrap();

let decoding_key = DecodingKey::from_jwk(&jwk).unwrap();
let decoding_key = DecodingKey::from_jwk(jwk).unwrap();

let mut v = Validation::new(Algorithm::RS256);
v.validate_exp = false;
Expand Down

0 comments on commit 1ea6e0b

Please sign in to comment.