Test is operational

This commit is contained in:
kdeng00
2025-05-22 16:12:48 -04:00
parent d984cee163
commit ca85a5d46d
+6 -6
View File
@@ -1154,12 +1154,12 @@ mod tests {
.body(axum::body::Body::from_stream(body)) .body(axum::body::Body::from_stream(body))
.unwrap() .unwrap()
).await { ).await {
Ok(_) => { Ok(response) => {
let resp = get_resp_data::< let resp = get_resp_data::<
crate::callers::song::response::fetch_queue_song::Response, crate::callers::song::response::update_song_queue::Response,
>(response) >(response)
.await; .await;
assert_eq!(false, resp.data.is_empty(), "Should not be empty"); assert_eq!(false, resp.data.is_empty(), "Should not be empty");
} }
Err(err) => { Err(err) => {
assert!(false, "Error: {:?}", err); assert!(false, "Error: {:?}", err);