mirror of
https://github.com/django/django.git
synced 2025-08-04 19:08:28 +00:00
Fixed several typos in Django
This commit is contained in:
parent
e79725cdf9
commit
1dcc603eff
34 changed files with 40 additions and 40 deletions
|
@ -1710,7 +1710,7 @@ class NullableRelOrderingTests(TestCase):
|
|||
qs = qs.order_by('others__single__name')
|
||||
# The ordering by others__single__pk will add one new join (to single)
|
||||
# and that join must be LEFT join. The already existing join to related
|
||||
# objects must be kept INNER. So, we have both a INNER and a LEFT join
|
||||
# objects must be kept INNER. So, we have both an INNER and a LEFT join
|
||||
# in the query.
|
||||
self.assertEqual(str(qs.query).count('LEFT'), 1)
|
||||
self.assertEqual(str(qs.query).count('INNER'), 1)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue