Skip to content

Commit

Permalink
avoid using assertDictEqual
Browse files Browse the repository at this point in the history
  • Loading branch information
stebunovd committed Jul 9, 2013
1 parent 3e058ec commit 96fa68b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests.py
Expand Up @@ -68,7 +68,7 @@ def test_invoice_custom_data(self):
u'obj': {
u'int_key': 42,
u'float_key': 90.0,
u'str_key': u'Wazzup',
u'str_key': u'®',
u'array': [1, 2, False],
u'obj': {u'None': None}
}
Expand All @@ -84,4 +84,4 @@ def test_invoice_custom_data(self):
self.assertEqual(inv2.amount, 3.2)
self.assertEqual(inv2.currency, 'RUB')
self.assertEqual(inv2.description, u'®')
self.assertDictEqual(test_dict, inv2.custom_data)
self.assertEqual(test_dict, inv2.custom_data)

0 comments on commit 96fa68b

Please sign in to comment.