summaryrefslogtreecommitdiff
path: root/tests/queries
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-05-28 17:39:14 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2014-05-28 17:39:14 -0700
commit1dcc603efff8229838f27019668d864a0bcbfa59 (patch)
tree8c67764f440faeb095143498383ca57ecd4f09be /tests/queries
parente79725cdf90e3271626ed66f70b63640d3fcc521 (diff)
Fixed several typos in Django
Diffstat (limited to 'tests/queries')
-rw-r--r--tests/queries/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/queries/tests.py b/tests/queries/tests.py
index 48d45f70f1..751f9792b1 100644
--- a/tests/queries/tests.py
+++ b/tests/queries/tests.py
@@ -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)