diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2011-12-17 17:38:08 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2011-12-17 17:38:08 +0000 |
| commit | e31c43a360c5b36279b5651030f5e95fad5fc398 (patch) | |
| tree | 702bb4d64584752e4a91f7fcf8d1ec08ca4a7a44 | |
| parent | 20c8aa2a2029be50449b25122f85bbef0f2b957f (diff) | |
Optimized an optimise
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17227 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | tests/regressiontests/queries/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/regressiontests/queries/tests.py b/tests/regressiontests/queries/tests.py index b89bc4e725..f7181d17c9 100644 --- a/tests/regressiontests/queries/tests.py +++ b/tests/regressiontests/queries/tests.py @@ -1430,7 +1430,7 @@ class Queries6Tests(TestCase): # The annotation->tag link is single values and tag->children links is # multi-valued. So we have to split the exclude filter in the middle - # and then optimise the inner query without losing results. + # and then optimize the inner query without losing results. self.assertQuerysetEqual( Annotation.objects.exclude(tag__children__name="t2"), ['<Annotation: a2>'] |
