Skip to content

Commit

Permalink
fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ramusus committed Jul 19, 2014
1 parent 9d1ac9c commit 566d4f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vkontakte_groups_migration/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def membership(id):
return GroupMembership.objects.get(user_id=id)

def memberships(id):
return GroupMembership.objects.filter(user_id=id)
return GroupMembership.objects.filter(user_id=id).order_by('id')

def id90_state1():
self.assertEqual(membership(90).time_entered, None)
Expand Down

0 comments on commit 566d4f6

Please sign in to comment.