diff options
author | Anssi Kääriäinen <anssi.kaariainen@thl.fi> | 2015-02-26 16:19:17 +0200 |
---|---|---|
committer | Tim Graham <timograham@gmail.com> | 2015-03-25 08:16:12 -0400 |
commit | 8f30556329b64005d63b66859a74752a0b261315 (patch) | |
tree | 73b5ac8d3be457f8061aa270437c9a957d2d622c /tests/queryset_pickle/tests.py | |
parent | f9c70bb3a1239ed1e04a769fd323286a5b1fde20 (diff) | |
download | django-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/queryset_pickle/tests.py')
-rw-r--r-- | tests/queryset_pickle/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/queryset_pickle/tests.py b/tests/queryset_pickle/tests.py index e842000854..d31b0cce1a 100644 --- a/tests/queryset_pickle/tests.py +++ b/tests/queryset_pickle/tests.py @@ -82,7 +82,7 @@ class PickleabilityTestCase(TestCase): m1 = M2MModel.objects.create() g1 = Group.objects.create(name='foof') m1.groups.add(g1) - m2m_through = M2MModel._meta.get_field('groups').rel.through + m2m_through = M2MModel._meta.get_field('groups').remote_field.through original = m2m_through.objects.get() dumped = pickle.dumps(original) reloaded = pickle.loads(dumped) |