From 4ed6a249ab07cf4f587e482ae42751f961507fb0 Mon Sep 17 00:00:00 2001 From: Nick Steel Date: Fri, 15 Mar 2024 22:58:29 +0000 Subject: [PATCH] Remove old test that makes no sense --- tests/test_translator.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tests/test_translator.py b/tests/test_translator.py index 1778d342..7f784290 100644 --- a/tests/test_translator.py +++ b/tests/test_translator.py @@ -568,12 +568,6 @@ def test_returns_empty_artists_list_if_artist_is_empty( assert list(album.artists) == [] - def test_caches_results(self, web_album_mock): - album1 = translator.web_to_album(web_album_mock) - album2 = translator.web_to_album(web_album_mock) - - assert album1 is album2 - def test_web_to_album_tracks(self, web_album_mock): tracks = translator.web_to_album_tracks(web_album_mock)