Skip to content

Commit

Permalink
Corrected the test for the fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
kreichgauer committed Jan 5, 2011
1 parent a24e1e4 commit 4e29971
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -828,7 +828,7 @@ class Address(models.Model):

a = Address.objects.all()[0]
u = User.objects.all()[0]
self.assertTrue(address in address.user_set)
self.assertTrue(u in a.user_set)
self.assertEqual("32/F Redisville", u.address.street_address)
self.assertEqual("NoSQL City", u.address.city)
self.assertEqual("1.3.18", u.address.zipcode)
Expand Down

0 comments on commit 4e29971

Please sign in to comment.