File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed
Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff 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" )
You can’t perform that action at this time.
0 commit comments