From 1dcc603efff8229838f27019668d864a0bcbfa59 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Wed, 28 May 2014 17:39:14 -0700 Subject: Fixed several typos in Django --- tests/queries/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/queries') 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) -- cgit v1.3