Skip to content

Commit 1c3b7cd

Browse files
author
octavia-squidington-iii
committed
Auto-fix lint and format issues
1 parent 6b144d4 commit 1c3b7cd

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

unit_tests/sources/declarative/auth/test_oauth.py

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -419,12 +419,14 @@ def test_given_content_type_application_json_when_refresh_token_then_send_reques
419419
http_mocker.post(
420420
HttpRequest(
421421
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-
}),
422+
body=json.dumps(
423+
{
424+
"grant_type": "client",
425+
"client_id": "some_client_id",
426+
"client_secret": "some_client_secret",
427+
"refresh_token": "some_refresh_token",
428+
}
429+
),
428430
),
429431
HttpResponse(body=json.dumps({"access_token": "new_access_token"})),
430432
)

0 commit comments

Comments
 (0)