Skip to content

Commit

Permalink
misc: clippy suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
chesedo committed Mar 20, 2024
1 parent 9d0797a commit 7ccfbbb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Clippy
run: cargo clippy --all-targets --no-dep
run: cargo clippy --all-targets --no-deps
- name: Run tests
run: cargo test --verbose
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ where
Poll::Ready(Ok(public_key)) => {
let claim_result = RequestClaim::<Claim>::from_token(
bearer.token().trim(),
&issuer,
issuer,
&public_key,
);
match claim_result {
Expand Down

0 comments on commit 7ccfbbb

Please sign in to comment.