Skip to content

Commit 1a11acd

Browse files
committed
Fix unit test
1 parent 72f1f22 commit 1a11acd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/collections/generate/unit.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ describe('Unit testing of the generativeConfigRuntime factory methods', () => {
7474
ModuleConfig<'generative-azure-openai', GenerativeConfigRuntimeType<'generative-azure-openai'>>
7575
>({
7676
name: 'generative-azure-openai',
77-
config: { model: '', isAzure: true },
77+
config: { isAzure: true },
7878
});
7979
});
8080
it('with values', () => {
@@ -255,7 +255,7 @@ describe('Unit testing of the generativeConfigRuntime factory methods', () => {
255255
ModuleConfig<'generative-openai', GenerativeConfigRuntimeType<'generative-openai'>>
256256
>({
257257
name: 'generative-openai',
258-
config: { model: '', isAzure: false },
258+
config: { isAzure: false },
259259
});
260260
});
261261
it('with values', () => {

0 commit comments

Comments
 (0)