diff options
| author | Ramiro Morales <cramm0@gmail.com> | 2010-10-19 00:14:41 +0000 |
|---|---|---|
| committer | Ramiro Morales <cramm0@gmail.com> | 2010-10-19 00:14:41 +0000 |
| commit | e1182306fdbf629ce12edca42bddf7508e357366 (patch) | |
| tree | a214a19c4168c99fe8cfdbcd80bbe0de2d5e8fa4 /tests | |
| parent | 7baee5b95384f19b2f579046a344d294eb5f67c6 (diff) | |
Fixed a small typo introduced in r14139.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@14272 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/regressiontests/queries/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/regressiontests/queries/models.py b/tests/regressiontests/queries/models.py index 88022163f8..87e4228572 100644 --- a/tests/regressiontests/queries/models.py +++ b/tests/regressiontests/queries/models.py @@ -1342,7 +1342,7 @@ Using an empty generator expression as the rvalue for an "__in" lookup is legal # Sqlite 3 does not support passing in more than 1000 parameters except by # changing a parameter at compilation time. -if connection.features.supports_1000_query_paramters: +if connection.features.supports_1000_query_parameters: __test__["API_TESTS"] += """ Bug #14244: Test that the "in" lookup works with lists of 1000 items or more. >>> Number.objects.all().delete() |
