Replace deprecated unittest method names with the correct ones

This commit is contained in:
JoeLametta
2018-05-02 08:05:00 +00:00
parent 44ece38740
commit 5f75d41c7b
17 changed files with 248 additions and 248 deletions

View File

@@ -16,8 +16,8 @@ class ResultCacheTestCase(tcommon.TestCase):
def testGetResult(self):
result = self.cache.getRipResult('fe105a11')
self.assertEquals(result.object.title, "The Writing's on the Wall")
self.assertEqual(result.object.title, "The Writing's on the Wall")
def testGetIds(self):
ids = self.cache.getIds()
self.assertEquals(ids, ['fe105a11'])
self.assertEqual(ids, ['fe105a11'])