summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Charette <charette.s@gmail.com>2019-02-19 01:32:33 -0500
committerTim Graham <timograham@gmail.com>2019-03-17 20:49:32 -0400
commit218a485bf13aa92d49c5da72c66053c18268fc14 (patch)
treea74929925f2fbdd7db775e79bc0bcbbadd6f6815
parent95b7699ffc4bdb32a504fccfd127f1b76a8a1d1c (diff)
Refs #12663 -- Fixed reference to nonexistent field in model_fields tests.
-rw-r--r--tests/model_fields/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/model_fields/models.py b/tests/model_fields/models.py
index 02fea36b31..93e424a2aa 100644
--- a/tests/model_fields/models.py
+++ b/tests/model_fields/models.py
@@ -344,7 +344,7 @@ class AllFieldsModel(models.Model):
fo = ForeignObject(
'self',
on_delete=models.CASCADE,
- from_fields=['abstract_non_concrete_id'],
+ from_fields=['positive_integer'],
to_fields=['id'],
related_name='reverse'
)