From 9c785f872518a0c9129122e1952aac3fec26f743 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87a=C4=9F=C4=B1l?= Date: Thu, 26 Apr 2018 12:25:32 +0100 Subject: [PATCH] Update - add a newline after import let's have a newline after RequestsClient import --- docs/api-guide/testing.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/api-guide/testing.md b/docs/api-guide/testing.md index 5f27c23e4..a6ecc7557 100644 --- a/docs/api-guide/testing.md +++ b/docs/api-guide/testing.md @@ -202,6 +202,7 @@ This exposes exactly the same interface as if you were using a requests session directly. from rest_framework.test import RequestsClient + client = RequestsClient() response = client.get('http://testserver/users/') assert response.status_code == 200