From 73ff0f1287dedb64fd539612ac18f11e142460a3 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Wed, 24 Nov 2010 19:52:34 +0000 Subject: [PATCH] [1.2.X] Fixed #14771 -- corrected a typo in the testing docs. Thanks to Christian Oudard for the patch. Backport of [14694]. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@14695 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/topics/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/topics/testing.txt b/docs/topics/testing.txt index bbb3e2b907..f597c90fdf 100644 --- a/docs/topics/testing.txt +++ b/docs/topics/testing.txt @@ -727,7 +727,7 @@ arguments at time of construction: parameters will be made available in the request.GET data. For example, if you were to make the request:: - >>> c.post('/login/?vistor=true', {'name': 'fred', 'passwd': 'secret'}) + >>> c.post('/login/?visitor=true', {'name': 'fred', 'passwd': 'secret'}) ... the view handling this request could interrogate request.POST to retrieve the username and password, and could interrogate request.GET