From 3d01fa85c9575683204a9a875d9ff7bb7711c17c Mon Sep 17 00:00:00 2001 From: Connor Johnstone Date: Wed, 18 Mar 2026 13:44:28 -0400 Subject: [PATCH] Test fix --- tests/integration.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/integration.rs b/tests/integration.rs index 9bc8c2b..d74cda0 100644 --- a/tests/integration.rs +++ b/tests/integration.rs @@ -96,6 +96,10 @@ impl MetadataProvider for MockProvider { }, ]) } + + async fn get_artist_release_groups(&self, _artist_mbid: &str) -> TagResult> { + Ok(vec![]) + } } #[tokio::test]