Skip to content

Commit

Permalink
Merge pull request #22 from osu-tournament-rating/hotfix/fix-clippy-w…
Browse files Browse the repository at this point in the history
…arnings

Fix clippy warnings
  • Loading branch information
hburn7 authored Feb 16, 2024
2 parents 5073e3d + 476f0ed commit af24ad3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/api/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ mod api_client_tests {
.await
.unwrap();

assert!(result.len() > 0);
assert!(!result.is_empty());

let result = api.get_match_ids(Some(10))
.await
Expand All @@ -241,7 +241,7 @@ mod api_client_tests {
.await
.unwrap();

assert!(result.len() > 0)
assert!(!result.is_empty())
}

#[tokio::test]
Expand Down Expand Up @@ -269,6 +269,6 @@ mod api_client_tests {
.await
.unwrap();

assert!(result.len() > 0)
assert!(!result.is_empty())
}
}

0 comments on commit af24ad3

Please sign in to comment.