summaryrefslogtreecommitdiff
path: root/docs/testing.txt
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2007-08-25 23:31:05 +0000
committerAdrian Holovaty <adrian@holovaty.com>2007-08-25 23:31:05 +0000
commit22e160945a38f82c7e30f7137b3fcac9dd778fba (patch)
tree7344005e5e8d752db077fe9c0017b7a660995602 /docs/testing.txt
parenta6784e6821b284c2f9e7b0def4fdb8cbe1b832fd (diff)
newforms-admin: Merged to [6013]
git-svn-id: http://code.djangoproject.com/svn/django/branches/newforms-admin@6014 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/testing.txt')
-rw-r--r--docs/testing.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/testing.txt b/docs/testing.txt
index f189aa4578..e27479cc34 100644
--- a/docs/testing.txt
+++ b/docs/testing.txt
@@ -473,7 +473,7 @@ Once you have a ``Client`` instance, you can call any of the following methods:
data. For example::
>>> c = Client()
- >>> c.get('/login/', {'name': 'fred', 'passwd': 'secret'})
+ >>> c.post('/login/', {'name': 'fred', 'passwd': 'secret'})
...will result in the evaluation of a POST request to this URL::