Skip to content

Commit 3e12dd3

Browse files
committed
fix: typo
1 parent b27fde7 commit 3e12dd3

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/api/providers/__tests__/io-intelligence.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ vi.mock("../fetchers/io-intelligence", () => ({
4040
supportsPromptCache: false,
4141
description: "DeepSeek R1 reasoning model",
4242
},
43-
"Intel/Qwen3-Coder-480B-A35B-Instruct-int4-mixed-ar ": {
43+
"Intel/Qwen3-Coder-480B-A35B-Instruct-int4-mixed-ar": {
4444
maxTokens: 4096,
4545
contextWindow: 106000,
4646
supportsImages: false,

src/api/providers/fetchers/__tests__/modelCache.spec.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const mockGetOpenRouterModels = getOpenRouterModels as Mock<typeof getOpenRouter
4141
const mockGetRequestyModels = getRequestyModels as Mock<typeof getRequestyModels>
4242
const mockGetGlamaModels = getGlamaModels as Mock<typeof getGlamaModels>
4343
const mockGetUnboundModels = getUnboundModels as Mock<typeof getUnboundModels>
44-
const mockGetIOIntelligencedModels = getIOIntelligenceModels as Mock<typeof getIOIntelligenceModels>
44+
const mockGetIOIntelligenceModels = getIOIntelligenceModels as Mock<typeof getIOIntelligenceModels>
4545

4646
const DUMMY_REQUESTY_KEY = "requesty-key-for-testing"
4747
const DUMMY_UNBOUND_KEY = "unbound-key-for-testing"
@@ -150,11 +150,11 @@ describe("getModels with new GetModelsOptions", () => {
150150
description: "IO Intelligence Model",
151151
},
152152
}
153-
mockGetIOIntelligencedModels.mockResolvedValue(mockModels)
153+
mockGetIOIntelligenceModels.mockResolvedValue(mockModels)
154154

155155
const result = await getModels({ provider: "io-intelligence", apiKey: DUMMY_IOINTELLIGENCE_KEY })
156156

157-
expect(mockGetIOIntelligencedModels).toHaveBeenCalled()
157+
expect(mockGetIOIntelligenceModels).toHaveBeenCalled()
158158
expect(result).toEqual(mockModels)
159159
})
160160

0 commit comments

Comments
 (0)