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).
This commit is contained in:
diegosouzapw
2026-08-28 19:23:37 -03:00
parent 9661611e31
commit 777d9d1629

View File

@@ -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;