Skip to content

Commit

Permalink
corrections de test api
Browse files Browse the repository at this point in the history
  • Loading branch information
firm1 committed Mar 25, 2015
1 parent 2f987c7 commit 317ae38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zds/member/api/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ def test_update_member_details_without_any_change(self):
self.assertEqual(self.profile.user.is_active, response.data.get('is_active'))
self.assertIsNotNone(response.data.get('date_joined'))
self.assertEqual(self.profile.site, response.data.get('site'))
self.assertEqual(self.profile.get_avatar_url(), response.data.get('avatar_url'))
self.assertEqual(self.profile.avatar_url, response.data.get('avatar_url'))
self.assertEqual(self.profile.biography, response.data.get('biography'))
self.assertEqual(self.profile.sign, response.data.get('sign'))
self.assertFalse(response.data.get('show_email'))
Expand Down

0 comments on commit 317ae38

Please sign in to comment.