From a3a07af91060363e21cad1621820cae5f2bf9524 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Tue, 21 Aug 2007 02:35:01 +0000 Subject: [PATCH] Fixed #5221 -- Fixed typo in docs/testing.txt. Thanks, derelm git-svn-id: http://code.djangoproject.com/svn/django/trunk@5989 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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::