Skip to content

Commit 1709999

Browse files
Update lmTool.test.ts to account for interface change in vscode.d.ts (#13484)
This works around a change to the vscode TextDocument interface
1 parent 44d32aa commit 1709999

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Extension/test/scenarios/SingleRootProject/tests/lmTool.test.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,13 +72,15 @@ describe('CppConfigurationLanguageModelTool Tests', () => {
7272
this.isClosed = isClosed;
7373
this.eol = eol;
7474
this.lineCount = lineCount;
75+
this.encoding = '';
7576
}
7677
fileName: string;
7778
isUntitled: boolean;
7879
languageId: string;
7980
version: number;
8081
isDirty: boolean;
8182
isClosed: boolean;
83+
encoding: string;
8284
save(): Thenable<boolean> {
8385
throw new Error('Method not implemented.');
8486
}

0 commit comments

Comments
 (0)