diff options
| author | Natalia <124304+nessita@users.noreply.github.com> | 2024-05-03 17:52:31 -0300 |
|---|---|---|
| committer | nessita <124304+nessita@users.noreply.github.com> | 2024-05-03 22:45:15 -0300 |
| commit | 3614ce2b7cf2dae686728f9cc56cde02272f1784 (patch) | |
| tree | be8685f2f7209a49753b4bfafd52c0f987b74e60 /django/test | |
| parent | e72049aa6302411d8cdf2e798e15fa38e76b92fc (diff) | |
Refs #31224 -- Fixed typo in django/test/client.py.
Diffstat (limited to 'django/test')
| -rw-r--r-- | django/test/client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/test/client.py b/django/test/client.py index 0964f87866..aa42c1f60a 100644 --- a/django/test/client.py +++ b/django/test/client.py @@ -688,7 +688,7 @@ class AsyncRequestFactory(RequestFactory): Once you have a request object you can pass it to any view function, including synchronous ones. The reason we have a separate class here is: a) this makes ASGIRequest subclasses, and - b) AsyncTestClient can subclass it. + b) AsyncClient can subclass it. """ def _base_scope(self, **request): |
