From 3614ce2b7cf2dae686728f9cc56cde02272f1784 Mon Sep 17 00:00:00 2001 From: Natalia <124304+nessita@users.noreply.github.com> Date: Fri, 3 May 2024 17:52:31 -0300 Subject: [PATCH] Refs #31224 -- Fixed typo in django/test/client.py. --- django/test/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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):