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 6b144d4 commit 1c3b7cdCopy full SHA for 1c3b7cd
unit_tests/sources/declarative/auth/test_oauth.py
@@ -419,12 +419,14 @@ def test_given_content_type_application_json_when_refresh_token_then_send_reques
419
http_mocker.post(
420
HttpRequest(
421
url="https://refresh_endpoint.com/",
422
- body=json.dumps({
423
- "grant_type": "client",
424
- "client_id": "some_client_id",
425
- "client_secret": "some_client_secret",
426
- "refresh_token": "some_refresh_token",
427
- }),
+ body=json.dumps(
+ {
+ "grant_type": "client",
+ "client_id": "some_client_id",
+ "client_secret": "some_client_secret",
+ "refresh_token": "some_refresh_token",
428
+ }
429
+ ),
430
),
431
HttpResponse(body=json.dumps({"access_token": "new_access_token"})),
432
)
0 commit comments