diff options
| author | Simon Charette <charette.s@gmail.com> | 2019-02-19 01:32:33 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2019-03-17 20:49:32 -0400 |
| commit | 218a485bf13aa92d49c5da72c66053c18268fc14 (patch) | |
| tree | a74929925f2fbdd7db775e79bc0bcbbadd6f6815 | |
| parent | 95b7699ffc4bdb32a504fccfd127f1b76a8a1d1c (diff) | |
Refs #12663 -- Fixed reference to nonexistent field in model_fields tests.
| -rw-r--r-- | tests/model_fields/models.py | 2 |
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' ) |
