From 0a3b7c26b114d48634f70953cee70ac3107147b0 Mon Sep 17 00:00:00 2001 From: Johannes Linke Date: Wed, 16 Sep 2015 17:49:14 +0200 Subject: [PATCH] Fix a deprecation warning --- compressor/tests/test_finder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compressor/tests/test_finder.py b/compressor/tests/test_finder.py index 9cd8673..0420cd4 100644 --- a/compressor/tests/test_finder.py +++ b/compressor/tests/test_finder.py @@ -12,4 +12,4 @@ class FinderTestCase(TestCase): def test_list_returns_empty_list(self): finder = CompressorFinder() - self.assertEquals(finder.list([]), []) + self.assertEqual(finder.list([]), [])