refactor: Remove unused variable main_playlist_id from test cases in TestPlaylistService
All checks were successful
Backend CI / lint (push) Successful in 9m24s
Backend CI / test (push) Successful in 3m48s

This commit is contained in:
JSC
2025-08-16 00:54:41 +02:00
parent a109a88eed
commit c27530a25f

View File

@@ -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: