1
0
mirror of https://github.com/django/django.git synced 2024-12-22 17:16:24 +00:00

Refs #31224 -- Fixed typo in django/test/client.py.

This commit is contained in:
Natalia 2024-05-03 17:52:31 -03:00 committed by nessita
parent e72049aa63
commit 3614ce2b7c

View File

@ -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):