summaryrefslogtreecommitdiff
path: root/tests/foreign_object
diff options
context:
space:
mode:
authorAnssi Kääriäinen <anssi.kaariainen@thl.fi>2015-02-26 16:19:17 +0200
committerTim Graham <timograham@gmail.com>2015-03-25 08:16:12 -0400
commit8f30556329b64005d63b66859a74752a0b261315 (patch)
tree73b5ac8d3be457f8061aa270437c9a957d2d622c /tests/foreign_object
parentf9c70bb3a1239ed1e04a769fd323286a5b1fde20 (diff)
downloaddjango-8f30556329b64005d63b66859a74752a0b261315.tar.gz
Renamed Field.rel attribute to remote_field
Field.rel is now deprecated. Rel objects have now also remote_field attribute. This means that self == self.remote_field.remote_field. In addition, made the Rel objects a bit more like Field objects. Still, marked ManyToManyFields as null=True.
Diffstat (limited to 'tests/foreign_object')
-rw-r--r--tests/foreign_object/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/foreign_object/models.py b/tests/foreign_object/models.py
index 1e3214fec7..177a200758 100644
--- a/tests/foreign_object/models.py
+++ b/tests/foreign_object/models.py
@@ -109,7 +109,7 @@ class ArticleTranslationDescriptor(ReverseSingleRelatedObjectDescriptor):
if instance is None:
raise AttributeError("%s must be accessed via instance" % self.field.name)
setattr(instance, self.cache_name, value)
- if value is not None and not self.field.rel.multiple:
+ if value is not None and not self.field.remote_field.multiple:
setattr(value, self.field.related.get_cache_name(), instance)