diff options
Diffstat (limited to 'tests/queries')
| -rw-r--r-- | tests/queries/tests.py | 2 |
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) |
