Skip to content

Commit de21b83

Browse files
committed
Formatting.
1 parent d298adf commit de21b83

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -130,17 +130,17 @@ describe('CppConfigurationLanguageModelTool Tests', () => {
130130
});
131131

132132
const arrangeChatContextFromCppTools = ({ chatContextFromCppTools, isCpp, isHeaderFile }:
133-
{ chatContextFromCppTools?: ChatContextResult; isCpp?: boolean; isHeaderFile?: boolean } =
134-
{ chatContextFromCppTools: undefined, isCpp: undefined, isHeaderFile: false }
133+
{ chatContextFromCppTools?: ChatContextResult; isCpp?: boolean; isHeaderFile?: boolean } =
134+
{ chatContextFromCppTools: undefined, isCpp: undefined, isHeaderFile: false }
135135
) => {
136136
activeClientStub.getChatContext.resolves(chatContextFromCppTools);
137137
sinon.stub(util, 'isCpp').returns(isCpp ?? true);
138138
sinon.stub(util, 'isHeaderFile').returns(isHeaderFile ?? false);
139139
};
140140

141141
const arrangeProjectContextFromCppTools = ({ projectContextFromCppTools, isCpp, isHeaderFile }:
142-
{ projectContextFromCppTools?: ProjectContextResult; isCpp?: boolean; isHeaderFile?: boolean } =
143-
{ projectContextFromCppTools: undefined, isCpp: undefined, isHeaderFile: false }
142+
{ projectContextFromCppTools?: ProjectContextResult; isCpp?: boolean; isHeaderFile?: boolean } =
143+
{ projectContextFromCppTools: undefined, isCpp: undefined, isHeaderFile: false }
144144
) => {
145145
activeClientStub.getProjectContext.resolves(projectContextFromCppTools);
146146
sinon.stub(util, 'isCpp').returns(isCpp ?? true);

0 commit comments

Comments
 (0)