From c1865619ffb48093b54fb382628a5533c4994f24 Mon Sep 17 00:00:00 2001 From: kdeng00 Date: Wed, 2 Jul 2025 12:20:26 -0400 Subject: [PATCH] Fixed what caused failed test --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 1a3c2b5..ae68c95 100644 --- a/src/main.rs +++ b/src/main.rs @@ -41,7 +41,7 @@ mod tests { let meta_path = String::from("tests/sample2_tracks/album.json"); if !std::path::Path::new(&meta_path).exists() { - assert!(false, "File does not exists: {:meta_path?}"); + assert!(false, "File does not exists: {meta_path:?}"); } match icarus_models::album::collection::parse_album(&meta_path) {