From dc44e50e5d879e1280cd74c35de9073d9c5502c1 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Thu, 16 Aug 2007 15:12:37 +0000 Subject: [PATCH] Fixed #5181 -- Fixed typo in example in docs/testing.txt. Thanks, hayley git-svn-id: http://code.djangoproject.com/svn/django/trunk@5904 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 99fae15ec4..c0d8ec8877 100644 --- a/docs/testing.txt +++ b/docs/testing.txt @@ -481,7 +481,7 @@ Once you have a ``Client`` instance, you can call any of the following methods: ...with this POST data:: - name=fred&passwd&secret + name=fred&passwd=secret If you provide ``content_type`` (e.g., ``text/xml`` for an XML payload), the contents of ``data`` will be sent as-is in the POST request, using