From 09369395b9a4d885cd14b8dbb61ae20592943b54 Mon Sep 17 00:00:00 2001 From: lomion Date: Fri, 5 Mar 2021 10:10:19 +0100 Subject: [PATCH] Added error in tests in order to verify CI --- test_tmdb.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test_tmdb.py b/test_tmdb.py index 6d9079d..766e48e 100644 --- a/test_tmdb.py +++ b/test_tmdb.py @@ -105,8 +105,8 @@ class TestTmdbMethods(unittest.TestCase): def test_cast(self): movie = TvShow() movie.search_title('The Flash') - #self.assertEqual('Tom Cavanagh', movie.cast[0]) - self.assertEqual('Alex Désert', movie.cast[2]) + self.assertEqual('Tom Cavanagh', movie.cast[0]) + #self.assertEqual('Alex Désert', movie.cast[2]) def test_poster_path(self): movie = Movie()