()
| 60 | provider_call_count = 0 |
| 61 | |
| 62 | def provider() -> str: |
| 63 | nonlocal provider_call_count |
| 64 | provider_call_count += 1 |
| 65 | return "fake_subject_token" |
| 66 | |
| 67 | exchange_route = respx.post("https://auth.openai.com/oauth/token").mock( |
| 68 | return_value=httpx.Response( |
no outgoing calls
no test coverage detected