style: cargo fmt

This commit is contained in:
Miguel Palhas
2026-08-23 16:34:43 +01:00
parent 1c9caa7478
commit 9f4943a01b
2 changed files with 8 additions and 11 deletions
+1 -3
View File
@@ -490,9 +490,7 @@ async fn series_without_a_tvdb_id_maps_to_none() {
let server = MockServer::start().await;
Mock::given(method("GET"))
.and(path("/3/tv/1/external_ids"))
.respond_with(
ResponseTemplate::new(200).set_body_string(r#"{"id": 1, "tvdb_id": null}"#),
)
.respond_with(ResponseTemplate::new(200).set_body_string(r#"{"id": 1, "tvdb_id": null}"#))
.mount(&server)
.await;