From fa654da6130df80239e181c432595442e688ee8b Mon Sep 17 00:00:00 2001 From: Ville Skyttä Date: Tue, 14 Jun 2016 16:03:12 +0300 Subject: Removed usage of a few deprecated unittest assertions. --- tests/utils_tests/test_functional.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/utils_tests') diff --git a/tests/utils_tests/test_functional.py b/tests/utils_tests/test_functional.py index 2cf399f892..f62784f1b0 100644 --- a/tests/utils_tests/test_functional.py +++ b/tests/utils_tests/test_functional.py @@ -134,14 +134,14 @@ class FunctionalTestCase(unittest.TestCase): def test_lazy_repr_text(self): original_object = 'Lazy translation text' lazy_obj = lazy(lambda: original_object, six.text_type) - self.assertEquals(repr(original_object), repr(lazy_obj())) + self.assertEqual(repr(original_object), repr(lazy_obj())) def test_lazy_repr_int(self): original_object = 15 lazy_obj = lazy(lambda: original_object, int) - self.assertEquals(repr(original_object), repr(lazy_obj())) + self.assertEqual(repr(original_object), repr(lazy_obj())) def test_lazy_repr_bytes(self): original_object = b'J\xc3\xbcst a str\xc3\xadng' lazy_obj = lazy(lambda: original_object, bytes) - self.assertEquals(repr(original_object), repr(lazy_obj())) + self.assertEqual(repr(original_object), repr(lazy_obj())) -- cgit v1.3