From 971bc066c5d41b001a134b95b6fe357c726135c9 Mon Sep 17 00:00:00 2001 From: Rodney Folz Date: Thu, 27 Apr 2017 15:44:06 -0700 Subject: [PATCH] Improve grammar in .force_authenticate() docs * Remove unnecessary comma * Remove the "and simple" copied from the line above. * Add "entirely" to emphasize that this function bypasses the authentication step. --- 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 13c746017..753c77e2f 100644 --- a/docs/api-guide/testing.md +++ b/docs/api-guide/testing.md @@ -162,7 +162,7 @@ The `credentials` method is appropriate for testing APIs that require authentica #### .force_authenticate(user=None, token=None) -Sometimes you may want to bypass authentication, and simple force all requests by the test client to be automatically treated as authenticated. +Sometimes you may want to bypass authentication entirely and force all requests by the test client to be automatically treated as authenticated. This can be a useful shortcut if you're testing the API but don't want to have to construct valid authentication credentials in order to make test requests.