DeepSeek - Fixed adapter test URL
This commit is contained in:
parent
b6ee63bda0
commit
cd57c2ee31
|
|
@ -35,7 +35,7 @@ describe('DeepSeekAdapter', () => {
|
||||||
expect(OpenAIMock).toHaveBeenCalledWith(
|
expect(OpenAIMock).toHaveBeenCalledWith(
|
||||||
expect.objectContaining({
|
expect.objectContaining({
|
||||||
apiKey: 'deepseek-test-key-123',
|
apiKey: 'deepseek-test-key-123',
|
||||||
baseURL: 'https://api.deepseek.com',
|
baseURL: 'https://api.deepseek.com/v1',
|
||||||
})
|
})
|
||||||
)
|
)
|
||||||
} finally {
|
} finally {
|
||||||
|
|
@ -52,7 +52,7 @@ describe('DeepSeekAdapter', () => {
|
||||||
expect(OpenAIMock).toHaveBeenCalledWith(
|
expect(OpenAIMock).toHaveBeenCalledWith(
|
||||||
expect.objectContaining({
|
expect.objectContaining({
|
||||||
apiKey: 'some-key',
|
apiKey: 'some-key',
|
||||||
baseURL: 'https://api.deepseek.com',
|
baseURL: 'https://api.deepseek.com/v1',
|
||||||
})
|
})
|
||||||
)
|
)
|
||||||
})
|
})
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue