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'})

Change History (1)

comment:1 by Adrian Holovaty, 17 years ago

Resolution: fixed
Status: newclosed

(In [5989]) Fixed #5221 -- Fixed typo in docs/testing.txt. Thanks, derelm

Note: See TracTickets for help on using tickets.
Back to Top