From 5759ef524c1cac5a1d88d8ea7ad068f1d56cf692 Mon Sep 17 00:00:00 2001 From: Carlos R <52587794+CERLgit@users.noreply.github.com> Date: Sun, 25 Feb 2024 18:55:18 -0500 Subject: [PATCH] Formatting Signed-off-by: Carlos R <52587794+CERLgit@users.noreply.github.com> --- lib/src/player.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/src/player.rs b/lib/src/player.rs index 629157e..ba07cca 100644 --- a/lib/src/player.rs +++ b/lib/src/player.rs @@ -728,7 +728,10 @@ mod tests { async fn test_get_all_like_id() { let res = get_all_like("1178271").await; assert!(res.is_ok()); - assert_eq!(res.unwrap()[0].user_slug, format!("user/{}", DANTOTTO_PLAYER_SLUG)); + assert_eq!( + res.unwrap()[0].user_slug, + format!("user/{}", DANTOTTO_PLAYER_SLUG) + ); } #[tokio::test]