Skip to content

Commit

Permalink
Removed deprecated usage of assertEquals from test_custom_service
Browse files Browse the repository at this point in the history
  • Loading branch information
comrumino committed Nov 20, 2022
1 parent defdb60 commit 82b818c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_custom_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def test_attributes(self):
self.prefixed_conn.root.prefix_get_decorated_prefix
self.assertFalse(hasattr(self.conn.root, 'get_decorated_prefix'))
smc = self.conn.root.MyClass('a', 'b')
self.assertEquals(smc.foo(), 'ab')
self.assertEqual(smc.foo(), 'ab')

def test_safeattrs(self):
x = self.conn.root.getlist()
Expand Down

0 comments on commit 82b818c

Please sign in to comment.