1
0
mirror of https://github.com/django/django.git synced 2025-10-25 22:56:12 +00:00

[1.7.x] Fixed several typos in Django

Backport of 1dcc603eff from master
This commit is contained in:
Alex Gaynor
2014-05-28 17:39:14 -07:00
committed by Tim Graham
parent d099c03789
commit 3d98941d5c
34 changed files with 40 additions and 40 deletions

View File

@@ -1709,7 +1709,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)