We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12e6b14 commit 859facbCopy full SHA for 859facb
tests/test_introspection_view.py
@@ -278,7 +278,7 @@ def test_view_post_notexisting_token(self):
278
"active": False,
279
},
280
)
281
-
+
282
def test_view_post_no_token(self):
283
"""
284
Test that when you pass an empty token as form parameter,
@@ -287,9 +287,7 @@ def test_view_post_no_token(self):
287
auth_headers = {
288
"HTTP_AUTHORIZATION": "Bearer " + self.resource_server_token.token,
289
}
290
- response = self.client.post(
291
- reverse("oauth2_provider:introspect"), **auth_headers
292
- )
+ response = self.client.post(reverse("oauth2_provider:introspect"), **auth_headers)
293
294
self.assertEqual(response.status_code, 200)
295
content = response.json()
0 commit comments