Skip to content

Commit

Permalink
Avoid using unicode().
Browse files Browse the repository at this point in the history
  • Loading branch information
charettes committed Nov 27, 2014
1 parent 2fb5b8d commit 42cb28c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mutant/tests/test_model_defs.py
Expand Up @@ -402,7 +402,7 @@ def test_proxy_interactions(self):
halak = proxy(name='Halak')
halak.save()
self.assertEqual(
"<class 'mutant.apps.app.models.Model'>", unicode(proxy)
"<class 'mutant.apps.app.models.Model'>", str(proxy)
)
self.assertEqual(sergei, proxy.objects.get(name='Sergei'))

Expand Down

0 comments on commit 42cb28c

Please sign in to comment.