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 efab13a commit 3ece6f1Copy full SHA for 3ece6f1
packages/toolbox-core/tests/test_auth_methods.py
@@ -155,7 +155,7 @@ def test_get_google_id_token_success_local_creds(
155
mock_session.assert_called_once_with(mock_creds)
156
mock_creds.refresh.assert_called_once_with(mock_request_instance)
157
mock_verify.assert_called_once_with(
158
- MOCK_ID_TOKEN, ANY, clock_skew_in_seconds=60
+ MOCK_ID_TOKEN, ANY, clock_skew_in_seconds=10
159
)
160
assert token == f"{auth_methods.BEARER_TOKEN_PREFIX}{MOCK_ID_TOKEN}"
161
assert auth_methods._token_cache["token"] == MOCK_ID_TOKEN
0 commit comments