switch placeholder key in litellm test

This commit is contained in:
slytechnical 2025-05-19 15:12:48 -05:00
parent d4918c369d
commit 9546dc7ea0

View file

@ -69,7 +69,7 @@ describe("LiteLLMHandler", () => {
it("uses dummy API key if not provided", () => {
new LiteLLMHandler({ litellmBaseUrl: "url", litellmModelId: "id" })
expect(OpenAI).toHaveBeenCalledWith(expect.objectContaining({ apiKey: "dummy-key" }))
expect(OpenAI).toHaveBeenCalledWith(expect.objectContaining({ apiKey: "sk-1234" }))
})
})