From 777d9d16294d09a1314f3f3782b1cc4d5143ade5 Mon Sep 17 00:00:00 2001 From: diegosouzapw <8016841+diegosouzapw@users.noreply.github.com> Date: Fri, 28 Aug 2026 19:23:37 -0300 Subject: [PATCH] test(translator): fix the relative imports of the relocated deferred-finish test #11940 moved tests/unit/translator/openai-to-claude-trailing-usage.test.ts one level up so a collector would run it, but kept the ../../../ import path from the old directory, so the file failed to load and painted Unit Tests fast-path (3/4) red on every PR since a94fe23e89. The path now matches its new location (5/5 pass). --- .../openai-to-claude-trailing-usage-deferred-finish.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/openai-to-claude-trailing-usage-deferred-finish.test.ts b/tests/unit/openai-to-claude-trailing-usage-deferred-finish.test.ts index 75a207b698..6d5eed34f1 100644 --- a/tests/unit/openai-to-claude-trailing-usage-deferred-finish.test.ts +++ b/tests/unit/openai-to-claude-trailing-usage-deferred-finish.test.ts @@ -1,7 +1,7 @@ import assert from "node:assert/strict"; import test from "node:test"; -import { openaiToClaudeResponse } from "../../../open-sse/translator/response/openai-to-claude.ts"; +import { openaiToClaudeResponse } from "../../open-sse/translator/response/openai-to-claude.ts"; type ClaudeUsage = { input_tokens: number;