Skip to content

Commit fa48916

Browse files
committed
Fix format
1 parent f875a8f commit fa48916

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

tests/client/test_auth.py

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -321,11 +321,13 @@ async def test_initialize_with_expired_tokens_detects_expiry(
321321
"""Test that expired tokens loaded from storage are detected as invalid."""
322322
context = oauth_provider.context
323323
await context.storage.set_tokens(expired_tokens)
324-
await context.storage.set_client_info(OAuthClientInformationFull(
325-
client_id="test_client_id",
326-
client_secret="test_client_secret",
327-
redirect_uris=[AnyUrl("http://localhost:3030/callback")],
328-
))
324+
await context.storage.set_client_info(
325+
OAuthClientInformationFull(
326+
client_id="test_client_id",
327+
client_secret="test_client_secret",
328+
redirect_uris=[AnyUrl("http://localhost:3030/callback")],
329+
)
330+
)
329331

330332
# First request
331333
test_request = httpx.Request("GET", "https://api.example.com/v1/mcp")

0 commit comments

Comments
 (0)