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
This commit is contained in:
Adrian Holovaty 2007-08-21 02:35:01 +00:00
parent c06524bc2d
commit a3a07af910
1 changed files with 1 additions and 1 deletions

View File

@ -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::