Merge pull request #24258 from joereyna/fix/anthropic-file-content-test-mock

fix(test): mock get_auth_header instead of get_api_key in anthropic file content test
This commit is contained in:
yuneng-jiang 2026-03-20 16:14:59 -07:00 committed by GitHub
commit e6e3085845
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -336,7 +336,7 @@ class TestAnthropicFilesHandler:
"extra_body": None
}
with patch.object(handler.anthropic_model_info, "get_api_key", return_value=None):
with patch.object(handler.anthropic_model_info, "get_auth_header", return_value=None):
with pytest.raises(ValueError, match="Missing Anthropic API Key"):
await handler.afile_content(
file_content_request=file_content_request,