Skip to content

Commit

Permalink
Fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperSandro2000 committed Sep 3, 2024
1 parent c4e3565 commit 4102a5e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/changes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -230,8 +230,8 @@ mod tests {

#[tokio::test]
async fn analyze_commit_approved() {
let mut remote = get_mock_remote();
let remote_client = (&mut remote.client).as_ref().unwrap();
let remote = get_mock_remote();
let remote_client = remote.client.as_ref().unwrap();

remote_client
.associated_prs
Expand Down Expand Up @@ -284,8 +284,8 @@ mod tests {

#[tokio::test]
async fn analyze_commit_none() {
let mut remote = get_mock_remote();
let remote_client = (&mut remote.client).as_ref().unwrap();
let remote = get_mock_remote();
let remote_client = remote.client.as_ref().unwrap();

remote_client
.associated_prs
Expand Down

0 comments on commit 4102a5e

Please sign in to comment.