diff --git a/test_tmdb.py b/test_tmdb.py index 6d9079d..54c026a 100644 --- a/test_tmdb.py +++ b/test_tmdb.py @@ -95,7 +95,7 @@ class TestTmdbMethods(unittest.TestCase): def test_search_tvshow(self): movie = TvShow() id = movie.search_title('The Flash') - self.assertEqual(id, 236) + self.assertEqual(id, 60735) def test_tv_title(self): movie = TvShow() @@ -106,7 +106,7 @@ class TestTmdbMethods(unittest.TestCase): movie = TvShow() movie.search_title('The Flash') #self.assertEqual('Tom Cavanagh', movie.cast[0]) - self.assertEqual('Alex Désert', movie.cast[2]) + self.assertEqual('Danielle Panabaker', movie.cast[2]) def test_poster_path(self): movie = Movie()