"""Tests for lyrics utils.""" from oto import response from backend.utils import lyrics def test_add_lyrics_error_response(): """Check that error response not modified.""" track_response = response.create_error_response('foo', 'bar') result = lyrics.add_track_lyrics_to_response(track_response) assert result is track_response