diff --git a/config/knip.config.ts b/config/knip.config.ts index 73fcd89c0185..72eae211e098 100644 --- a/config/knip.config.ts +++ b/config/knip.config.ts @@ -128,7 +128,6 @@ const config = { "**/*.test-utils.ts", "test/helpers/live-image-probe.ts", "src/secrets/credential-matrix.ts", - "src/gateway/live-tool-probe-utils.ts", "src/shared/text/assistant-visible-text.ts", bundledPluginFile("telegram", "src/bot/reply-threading.ts"), bundledPluginFile("telegram", "src/draft-chunking.ts"), diff --git a/src/gateway/gateway-models.profiles.live.test.ts b/src/gateway/gateway-models.profiles.live.test.ts index 9c6320593aad..4fc9eaff0a80 100644 --- a/src/gateway/gateway-models.profiles.live.test.ts +++ b/src/gateway/gateway-models.profiles.live.test.ts @@ -67,7 +67,7 @@ import { isLikelyToolNonceRefusal, shouldRetryExecReadProbe, shouldRetryToolReadProbe, -} from "./live-tool-probe-utils.js"; +} from "./live-tool-probe.test-helpers.js"; import { startGatewayServer } from "./server.impl.js"; import { readSessionMessagesAsync } from "./session-transcript-readers.js"; import { loadSessionEntry } from "./session-utils.js"; diff --git a/src/gateway/live-tool-probe-utils.test.ts b/src/gateway/live-tool-probe-utils.test.ts index de78c7e9e006..18c801fa2472 100644 --- a/src/gateway/live-tool-probe-utils.test.ts +++ b/src/gateway/live-tool-probe-utils.test.ts @@ -8,7 +8,7 @@ import { isLikelyToolNonceRefusal, shouldRetryExecReadProbe, shouldRetryToolReadProbe, -} from "./live-tool-probe-utils.js"; +} from "./live-tool-probe.test-helpers.js"; describe("live tool probe utils", () => { describe("nonce matching", () => { diff --git a/src/gateway/live-tool-probe-utils.ts b/src/gateway/live-tool-probe.test-helpers.ts similarity index 100% rename from src/gateway/live-tool-probe-utils.ts rename to src/gateway/live-tool-probe.test-helpers.ts