From ef7c33863c4a0e6076db644b9e78af66c5026fae Mon Sep 17 00:00:00 2001 From: Tano Abeleyra Date: Thu, 18 Oct 2018 19:04:29 -0300 Subject: [PATCH] Fix typo in testing.md --- 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