From 88b575ee95513e92d8d48f963a40af62144b8003 Mon Sep 17 00:00:00 2001 From: Claudio Ortolina Date: Thu, 26 Mar 2026 11:55:05 +0000 Subject: [PATCH] Remove duplicated test --- test/music_library/worker/apply_scrobble_rules_test.exs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/test/music_library/worker/apply_scrobble_rules_test.exs b/test/music_library/worker/apply_scrobble_rules_test.exs index 6ba50cee..393273d1 100644 --- a/test/music_library/worker/apply_scrobble_rules_test.exs +++ b/test/music_library/worker/apply_scrobble_rules_test.exs @@ -67,14 +67,7 @@ defmodule MusicLibrary.Worker.ApplyScrobbleRulesTest do assert updated_track2.album.musicbrainz_id in [nil, ""] end - test "handles errors gracefully" do - # Since we can't easily mock here, let's test with no rules - # which should still return :ok - assert :ok = ApplyScrobbleRules.perform(%Oban.Job{args: %{}}) - end - test "handles empty rules list" do - # No rules exist assert :ok = ApplyScrobbleRules.perform(%Oban.Job{args: %{}}) end end