From ae7cb992bca5d211c9456487feb21b84387006eb Mon Sep 17 00:00:00 2001 From: Collin Anderson Date: Mon, 27 Oct 2014 21:36:47 -0400 Subject: Fixed #23721 -- check_related_objects without calling __iter__ Refs #14334 --- tests/queries/models.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'tests') diff --git a/tests/queries/models.py b/tests/queries/models.py index bb3d52a635..fbd6221732 100644 --- a/tests/queries/models.py +++ b/tests/queries/models.py @@ -408,6 +408,10 @@ class ObjectA(models.Model): def __str__(self): return self.name + def __iter__(self): + # Ticket #23721 + assert False, 'type checking should happen without calling model __iter__' + class ProxyObjectA(ObjectA): class Meta: -- cgit v1.3