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 6399e3a commit 2148c93Copy full SHA for 2148c93
tests/unit/client/test_oauth2_providers.py
@@ -507,9 +507,7 @@ async def post(
507
await provider._request_token()
508
509
assert capturing_client.captured_data is not None
510
- assert capturing_client.captured_headers == {
511
- "Content-Type": "application/x-www-form-urlencoded"
512
- }
+ assert capturing_client.captured_headers == {"Content-Type": "application/x-www-form-urlencoded"}
513
assert capturing_client.captured_data["grant_type"] == "client_credentials"
514
assert capturing_client.captured_data["resource"] == provider.resource
515
assert "scope" not in capturing_client.captured_data
0 commit comments