Skip to content

Commit a6f77c4

Browse files
committed
merge with recent branch
1 parent ac02caf commit a6f77c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/client/test_auth.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,7 @@ async def test_oauth_discovery_fallback_conditions(self, oauth_provider):
422422
)
423423

424424
# Mock the authorization process to minimize unnecessary state in this test
425-
oauth_provider._perform_authorization = mock.AsyncMock(return_value=("test_auth_code", "test_code_verifier"))
425+
oauth_provider._perform_authorization = AsyncMock(return_value=("test_auth_code", "test_code_verifier"))
426426

427427
# Next request should fall back to legacy behavior and auth with the RS (mocked /authorize, next is /token)
428428
token_request = await auth_flow.asend(oauth_metadata_response_3)

0 commit comments

Comments
 (0)