From e1182306fdbf629ce12edca42bddf7508e357366 Mon Sep 17 00:00:00 2001 From: Ramiro Morales Date: Tue, 19 Oct 2010 00:14:41 +0000 Subject: Fixed a small typo introduced in r14139. git-svn-id: http://code.djangoproject.com/svn/django/trunk@14272 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- tests/regressiontests/queries/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests') 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() -- cgit v1.3