Fix a deprecation warning

This commit is contained in:
Johannes Linke
2015-09-16 17:49:14 +02:00
parent 71cd9f8920
commit 0a3b7c26b1

View File

@@ -12,4 +12,4 @@ class FinderTestCase(TestCase):
def test_list_returns_empty_list(self):
finder = CompressorFinder()
self.assertEquals(finder.list([]), [])
self.assertEqual(finder.list([]), [])