Refs #12663 -- Fixed reference to nonexistent field in model_fields tests.

This commit is contained in:
Simon Charette 2019-02-19 01:32:33 -05:00 committed by Tim Graham
parent 95b7699ffc
commit 218a485bf1
1 changed files with 1 additions and 1 deletions

View File

@ -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'
)