Suppress a couple more DeprecationWarnings in the test suite.
diff --git a/tests/testmock.py b/tests/testmock.py
index 875e420..f071b03 100644
--- a/tests/testmock.py
+++ b/tests/testmock.py
@@ -1275,7 +1275,7 @@
         m = Mock()
         m.hello(name='hello', daddy='hero')
         text = "call(daddy='hero', name='hello')"
-        self.assertEquals(repr(m.hello.call_args), text)
+        self.assertEqual(repr(m.hello.call_args), text)
 
     def test_mock_add_spec(self):
         class _One(object):