summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/queries/models.py4
1 files changed, 4 insertions, 0 deletions
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: