summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2010-11-24 19:52:34 +0000
committerAlex Gaynor <alex.gaynor@gmail.com>2010-11-24 19:52:34 +0000
commit73ff0f1287dedb64fd539612ac18f11e142460a3 (patch)
tree399995e05ef2b4ca7a4028f7b07eccaf787a24f1
parentcb9cb65c6833c0477bbae19fd0cfe51e1df050ee (diff)
[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
-rw-r--r--docs/topics/testing.txt2
1 files changed, 1 insertions, 1 deletions
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