diff --git a/docs/topics/testing/tools.txt b/docs/topics/testing/tools.txt
index 7aaeff9..fd784f0 100644
a
|
b
|
Use the ``django.test.Client`` class to make requests.
|
340 | 340 | ``login()`` method to simulate the effect of a user logging into the |
341 | 341 | site. |
342 | 342 | |
| 343 | Inactive users (:attr:`is_active=False |
| 344 | <django.contrib.auth.models.User.is_active>`) are not permitted to login |
| 345 | as this method is meant to be equivalent to the |
| 346 | :func:`~django.contrib.auth.login` view which uses |
| 347 | :class:`~django.contrib.auth.forms.AuthenticationForm` and therefore |
| 348 | defaults to rejecting users who are inactive. |
| 349 | |
343 | 350 | After you call this method, the test client will have all the cookies |
344 | 351 | and session data required to pass any login-based tests that may form |
345 | 352 | part of a view. |