Skip to content

Commit b81bf9a

Browse files
lint: fix lints
1 parent 3b8e7b6 commit b81bf9a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/client/test_auth.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -361,13 +361,13 @@ async def test_oauth_discovery_fallback_conditions(self, oauth_provider: OAuthCl
361361
),
362362
request=token_request,
363363
)
364-
364+
365365
# After OAuth flow completes, the original request is retried with auth header
366366
final_request = await auth_flow.asend(token_response)
367367
assert final_request.headers["Authorization"] == "Bearer new_access_token"
368368
assert final_request.method == "GET"
369369
assert str(final_request.url) == "https://api.example.com/v1/mcp"
370-
370+
371371
# Send final success response to properly close the generator
372372
final_response = httpx.Response(200, request=final_request)
373373
try:

0 commit comments

Comments
 (0)