From 9d001cd84c1239d708b1528587c183ef30e38c31 Mon Sep 17 00:00:00 2001 From: Tano Abeleyra Date: Thu, 18 Oct 2018 19:42:52 -0300 Subject: [PATCH] Fix typo in testing.md (#6257) --- docs/api-guide/testing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api-guide/testing.md b/docs/api-guide/testing.md index a6ecc7557..9134bd08e 100644 --- a/docs/api-guide/testing.md +++ b/docs/api-guide/testing.md @@ -119,7 +119,7 @@ Extends [Django's existing `Client` class][client]. ## Making requests -The `APIClient` class supports the same request interface as Django's standard `Client` class. This means the that standard `.get()`, `.post()`, `.put()`, `.patch()`, `.delete()`, `.head()` and `.options()` methods are all available. For example: +The `APIClient` class supports the same request interface as Django's standard `Client` class. This means that the standard `.get()`, `.post()`, `.put()`, `.patch()`, `.delete()`, `.head()` and `.options()` methods are all available. For example: from rest_framework.test import APIClient