test(e2e): fix EndpointsClient gateway attribute left behind by the ProxyClient rename

This commit is contained in:
Tin Chi Lo 2026-07-21 00:05:59 -07:00
parent c1b6c4062e
commit bcc5fadbb1

View file

@ -88,9 +88,9 @@ def _system_reminder_turn() -> RichMessage:
def _post_messages(client: EndpointsClient, key: str, body: RichMessagesRequest) -> Result[MessagesResult]:
return client.gateway.transport.post(
return client.proxy.transport.post(
"/v1/messages",
headers=client.gateway.transport.bearer(key),
headers=client.proxy.transport.bearer(key),
json=body,
response_type=MessagesResult,
)