From 32ef48aa562e6aaee9983f5d0f1c60f02fd555fb Mon Sep 17 00:00:00 2001 From: Ian Foote Date: Sun, 25 Oct 2015 23:29:34 +0000 Subject: Fixed #25609 -- Fixed regression in related field nested lookup error. --- tests/lookup/tests.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'tests') diff --git a/tests/lookup/tests.py b/tests/lookup/tests.py index 70a94c96cb..7e9f0921f8 100644 --- a/tests/lookup/tests.py +++ b/tests/lookup/tests.py @@ -493,6 +493,12 @@ class LookupTests(TestCase): str(ex), "Unsupported lookup 'starts' for CharField " "or join on the field not permitted.") + def test_relation_nested_lookup_error(self): + # An invalid nested lookup on a related field raises a useful error. + msg = 'Related Field got invalid lookup: editor' + with self.assertRaisesMessage(FieldError, msg): + Article.objects.filter(author__editor__name='James') + def test_regex(self): # Create some articles with a bit more interesting headlines for testing field lookups: for a in Article.objects.all(): -- cgit v1.3