()
| 527 | load_calls = 0 |
| 528 | |
| 529 | def fake_load() -> Any: |
| 530 | nonlocal load_calls |
| 531 | load_calls += 1 |
| 532 | return _FakeCredentials(token="adc-token"), "adc-project" |
| 533 | |
| 534 | monkeypatch.setattr("anthropic.lib.google_cloud._client._load_adc_credentials", fake_load) |
| 535 |
nothing calls this directly
no test coverage detected