Remove dead Last.fm tag search

This commit is contained in:
hugovk 2017-10-18 22:31:15 +03:00
parent 58b93c847e
commit f70254b947
2 changed files with 0 additions and 39 deletions

View file

@ -340,18 +340,6 @@ class TestPyLastNetwork(PyLastTestCase):
self.assertIsInstance(results, list)
self.assertIsInstance(results[0], pylast.Artist)
def test_tag_search(self):
# Arrange
tag = "rock"
# Act
search = self.network.search_for_tag(tag)
results = search.get_next_page()
# Assert
self.assertIsInstance(results, list)
self.assertIsInstance(results[0], pylast.Tag)
def test_track_search(self):
# Arrange
artist = "Nirvana"