diff --git a/src/main.rs b/src/main.rs index aa828e5..6032046 100644 --- a/src/main.rs +++ b/src/main.rs @@ -360,7 +360,10 @@ mod tests { app.clone().oneshot(req).await } - async fn create_song_req(app: &axum::Router, song_queue_id: &uuid::Uuid) -> Result { + async fn create_song_req( + app: &axum::Router, + song_queue_id: &uuid::Uuid, + ) -> Result { let payload = serde_json::json!({ "title": "Power of Soul", "artist": "Jimmi Hendrix", @@ -1265,8 +1268,7 @@ mod tests { assert_eq!(false, resp.data.is_empty(), "Data should not be empty"); let song_q_id = resp.data[0].song_queue_id; - match create_song_req(&app, &song_q_id).await - { + match create_song_req(&app, &song_q_id).await { Ok(response) => { let resp = get_resp_data::(response).await; assert_eq!(