From fc31a157cccb60244a320449d26f9dda728d3410 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Tue, 11 Aug 2026 21:44:51 -0700 Subject: [PATCH] refactor(gateway): remove orphan testing aliases (#122433) --- src/gateway/call.ts | 1 - src/gateway/openresponses-http.ts | 1 - src/gateway/server-methods/agents.ts | 1 - 3 files changed, 3 deletions(-) diff --git a/src/gateway/call.ts b/src/gateway/call.ts index 4d22c7e395cb..dd18b956761d 100644 --- a/src/gateway/call.ts +++ b/src/gateway/call.ts @@ -1292,5 +1292,4 @@ export async function callGateway>( export function randomIdempotencyKey() { return randomUUID(); } -export { testing as __testing }; /* oxlint-disable max-lines -- TODO: split this grandfathered oversized file. */ diff --git a/src/gateway/openresponses-http.ts b/src/gateway/openresponses-http.ts index f6039accefbe..4c03f20288f1 100644 --- a/src/gateway/openresponses-http.ts +++ b/src/gateway/openresponses-http.ts @@ -1392,5 +1392,4 @@ export async function handleOpenResponsesHttpRequest( return true; } -export { testing as __testing }; /* oxlint-disable max-lines -- TODO: split this grandfathered oversized file. */ diff --git a/src/gateway/server-methods/agents.ts b/src/gateway/server-methods/agents.ts index 9a91f3d1f602..0c0e9f00d66f 100644 --- a/src/gateway/server-methods/agents.ts +++ b/src/gateway/server-methods/agents.ts @@ -1593,5 +1593,4 @@ export const agentsHandlers: GatewayRequestHandlers = { ); }, }; -export { testing as __testing }; /* oxlint-disable max-lines -- TODO: split this grandfathered oversized file. */