Skip to content

Commit

Permalink
Run cargo fmt & clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
SamWilsn committed Jun 14, 2024
1 parent 9448fcc commit 06f4ca6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tests/generate_release_notes_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,5 @@ async fn should_return_page_with_check_runs() {

let response = result.unwrap();
assert_eq!(response.name, tag_name);
assert_eq!(response.body.is_empty(), false);
assert!(!response.body.is_empty());
}
4 changes: 1 addition & 3 deletions tests/user_deserialize_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@
mod mock_error;
use mock_error::setup_error_handler;
use octocrab::models::UserProfile;
use octocrab::{Error, Octocrab};
use serde::{Deserialize, Serialize};
use serde_json::{json, Value};
use octocrab::Octocrab;
use wiremock::{
matchers::{method, path},
Mock, MockServer, ResponseTemplate,
Expand Down

0 comments on commit 06f4ca6

Please sign in to comment.