mirror of
https://github.com/django/django.git
synced 2025-08-03 10:34:04 +00:00
Fixed #27268 -- Restored an invalid related field lookup error message in QuerySet filtering.
This commit is contained in:
parent
602bffe758
commit
14986a0b9d
2 changed files with 5 additions and 0 deletions
|
@ -515,6 +515,9 @@ class LookupTests(TestCase):
|
|||
msg = 'Related Field got invalid lookup: editor'
|
||||
with self.assertRaisesMessage(FieldError, msg):
|
||||
Article.objects.filter(author__editor__name='James')
|
||||
msg = 'Related Field got invalid lookup: foo'
|
||||
with self.assertRaisesMessage(FieldError, msg):
|
||||
Tag.objects.filter(articles__foo='bar')
|
||||
|
||||
def test_regex(self):
|
||||
# Create some articles with a bit more interesting headlines for testing field lookups:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue