Skip to content

Commit e7919ac

Browse files
committed
fix test
1 parent 66ab122 commit e7919ac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/package.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1349,7 +1349,7 @@ describe('toVsixManifest', () => {
13491349
.then(result => assert.deepEqual(result.PackageManifest.Metadata[0].Tags[0], 'chat-participant,__web_extension'));
13501350
});
13511351

1352-
it('should automatically add tools tag', () => {
1352+
it('should automatically add languageModelTools tag', () => {
13531353
const manifest = {
13541354
name: 'test',
13551355
publisher: 'mocha',
@@ -1362,7 +1362,7 @@ describe('toVsixManifest', () => {
13621362

13631363
return _toVsixManifest(manifest, [])
13641364
.then(parseXmlManifest)
1365-
.then(result => assert.deepEqual(result.PackageManifest.Metadata[0].Tags[0], 'tools,__web_extension'));
1365+
.then(result => assert.deepEqual(result.PackageManifest.Metadata[0].Tags[0], 'tools,language-model-tools,__web_extension'));
13661366
});
13671367

13681368
it('should remove duplicate tags', () => {

0 commit comments

Comments
 (0)