mirror of https://github.com/django/django.git
Fixed the test introduced in 2ca37af6
under Python 3.
This commit is contained in:
parent
2ca37af621
commit
db5049c9f7
|
@ -93,7 +93,7 @@ class GenericRelationTests(TestCase):
|
|||
|
||||
places = list(Place.objects.order_by('links__id'))
|
||||
def count_places(place):
|
||||
return len(filter(lambda p: p.id == place.id, places))
|
||||
return len([p for p in places if p.id == place.id])
|
||||
|
||||
self.assertEqual(len(places), 2)
|
||||
self.assertEqual(count_places(p1), 1)
|
||||
|
|
Loading…
Reference in New Issue