diff --git a/test_tmdb.py b/test_tmdb.py index d7eefda..2f58489 100644 --- a/test_tmdb.py +++ b/test_tmdb.py @@ -164,17 +164,6 @@ class TestTmdbMethods(unittest.IsolatedAsyncioTestCase): self.assertEqual(list.list[2]['id'], results['results'][2]['id']) await list.close_session() - async def test_movie_popular_html(self): - results = await apiRequests('/movie/popular') - list = MoviePopular() - await list.load_parameters() - await list.query() - test_result = escape(results['results'][-1]['title']) - tested = list.getListHtml() - tested = tested[(len(results['results'][-1]['title']) + 8) * -1:] - self.assertEqual(tested, f"""{test_result}

""") - await list.close_session() - async def test_movie_popular_text(self): results = await apiRequests('/movie/popular') list = MoviePopular()