From c27530a25f3c6ae99640df99f89e3c80e0583647 Mon Sep 17 00:00:00 2001 From: JSC Date: Sat, 16 Aug 2025 00:54:41 +0200 Subject: [PATCH] refactor: Remove unused variable main_playlist_id from test cases in TestPlaylistService --- tests/services/test_playlist.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/services/test_playlist.py b/tests/services/test_playlist.py index 5dc547f..48d6c7a 100644 --- a/tests/services/test_playlist.py +++ b/tests/services/test_playlist.py @@ -909,7 +909,6 @@ class TestPlaylistService: # Extract IDs before async calls sound_id = sound.id - main_playlist_id = main_playlist.id # Try to add sound to main playlist (should fail) with pytest.raises(HTTPException) as exc_info: @@ -954,7 +953,6 @@ class TestPlaylistService: # Extract IDs before async calls sound_id = sound.id - main_playlist_id = main_playlist.id # Try to add sound to main playlist (should fail both times) with pytest.raises(HTTPException) as exc_info: