Fixed #32438 -- Fixed typo in docs/topics/testing/tools.txt.

This commit is contained in:
David Smith 2021-02-12 08:20:30 +00:00 committed by GitHub
parent 91c243f80f
commit e412b28845
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -112,12 +112,12 @@ Use the ``django.test.Client`` class to make requests.
.. class:: Client(enforce_csrf_checks=False, json_encoder=DjangoJSONEncoder, **defaults) .. class:: Client(enforce_csrf_checks=False, json_encoder=DjangoJSONEncoder, **defaults)
It requires no arguments at time of construction. However, you can use It requires no arguments at time of construction. However, you can use
keywords arguments to specify some default headers. For example, this will keyword arguments to specify some default headers. For example, this will
send a ``User-Agent`` HTTP header in each request:: send a ``User-Agent`` HTTP header in each request::
>>> c = Client(HTTP_USER_AGENT='Mozilla/5.0') >>> c = Client(HTTP_USER_AGENT='Mozilla/5.0')
The values from the ``extra`` keywords arguments passed to The values from the ``extra`` keyword arguments passed to
:meth:`~django.test.Client.get()`, :meth:`~django.test.Client.get()`,
:meth:`~django.test.Client.post()`, etc. have precedence over :meth:`~django.test.Client.post()`, etc. have precedence over
the defaults passed to the class constructor. the defaults passed to the class constructor.