commit:     c7e394dc49ee26fe52012befa30e08ce91270377
Author:     Devan Franchini <twitch153 <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 30 03:28:12 2014 +0000
Commit:     Devan Franchini <twitch153 <AT> gentoo <DOT> org>
CommitDate: Sun Nov 30 04:44:17 2014 +0000
URL:        
http://sources.gentoo.org/gitweb/?p=proj/layman.git;a=commit;h=c7e394dc

external.py: Converts all assertEquals calls to assertEqual

As the assertEquals call is being deprecated, all of its calls must
be converted to assertEqual.

---
 layman/tests/external.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/layman/tests/external.py b/layman/tests/external.py
index 64f48d2..e20baaa 100755
--- a/layman/tests/external.py
+++ b/layman/tests/external.py
@@ -645,7 +645,7 @@ class RemoteDBCache(unittest.TestCase):
                   }
         config = OptionConfig(my_opts)
         db = RemoteDB(config)
-        self.assertEquals(db.cache(), (True, True))
+        self.assertEqual(db.cache(), (True, True))
 
         db_xml = fileopen(db.filepath(config['overlays']) + '.xml')
 

Reply via email to