Opened 17 years ago
Closed 17 years ago
#5221 closed (fixed)
typo in testing documentation
Reported by: | derelm | Owned by: | Jacob |
---|---|---|---|
Component: | Documentation | Version: | dev |
Severity: | Keywords: | ||
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
http://www.djangoproject.com/documentation/testing/#making-requests
in the example for usage of post()
>>> c.get('/login/', {'name': 'fred', 'passwd': 'secret'})
that should obviously be:
>>> c.post('/login/', {'name': 'fred', 'passwd': 'secret'})
Note:
See TracTickets
for help on using tickets.
(In [5989]) Fixed #5221 -- Fixed typo in docs/testing.txt. Thanks, derelm