From bb6e3b4284b8efbaf9581154d741ff0ae4adceda Mon Sep 17 00:00:00 2001 From: kdeng00 Date: Sat, 24 May 2025 17:19:12 -0400 Subject: [PATCH] Code formatting --- src/main.rs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) 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!(