From dbcd35f6c21770df97d0fa0a5b2bd54124f823c0 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sun, 5 Apr 2026 12:50:42 +0100 Subject: [PATCH] test: decouple pi-tools params test imports --- src/agents/pi-tools.params.test.ts | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/agents/pi-tools.params.test.ts b/src/agents/pi-tools.params.test.ts index 062f2471bae..0c426f94c62 100644 --- a/src/agents/pi-tools.params.test.ts +++ b/src/agents/pi-tools.params.test.ts @@ -1,10 +1,11 @@ import { Type } from "@sinclair/typebox"; import { describe, expect, it, vi } from "vitest"; -import { __testing } from "./pi-tools.js"; -import { CLAUDE_PARAM_GROUPS } from "./pi-tools.params.js"; - -const { assertRequiredParams, patchToolSchemaForClaudeCompatibility, wrapToolParamNormalization } = - __testing; +import { + assertRequiredParams, + CLAUDE_PARAM_GROUPS, + patchToolSchemaForClaudeCompatibility, + wrapToolParamNormalization, +} from "./pi-tools.params.js"; describe("assertRequiredParams", () => { it("patches Claude-compatible file tool schemas to disallow unknown parameters", () => {