Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Replaced assertEquals by assertEqual as using assertEquals is discour…
Browse files Browse the repository at this point in the history
…aged
  • Loading branch information
Bounder committed Dec 11, 2012
1 parent 65d01d1 commit bbc09dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/mvvm/viewmodel/test_wrapper.py
Expand Up @@ -19,7 +19,7 @@ def test(self):

obj = Skater(first_name='Bouke')
wrapped = wrap(obj, True)
self.assertEquals(wrapped, obj)
self.assertEqual(wrapped, obj)
self.assertIsInstance(wrapped, wrapped_cls)
self.assertIsInstance(wrapped, HasTraits)

Expand Down

0 comments on commit bbc09dd

Please sign in to comment.