1
0
mirror of https://github.com/django/django.git synced 2025-07-19 17:19:12 +00:00

[1.9.x] Fixed typo in docs/topics/testing/tools.txt

Backport of 75c5e547b5350b167aa8f30882c83446d86e8f2b from master
This commit is contained in:
eltronix 2016-04-27 01:19:00 +03:00 committed by Tim Graham
parent 658ab34008
commit 4afead50cb

View File

@ -310,7 +310,7 @@ Use the ``django.test.Client`` class to make requests.
.. method:: Client.delete(path, data='', content_type='application/octet-stream', follow=False, secure=False, **extra)
Makes an DELETE request on the provided ``path`` and returns a
Makes a DELETE request on the provided ``path`` and returns a
``Response`` object. Useful for testing RESTful interfaces.
When ``data`` is provided, it is used as the request body, and