Skip to content

Commit ab5e8a3

Browse files
committed
change the function signature
1 parent 5c321a8 commit ab5e8a3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/unitTests/testAssets/Fakes.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -149,11 +149,11 @@ export function getWorkspaceInformationUpdated(msbuild: protocol.MsBuildWorkspac
149149
return new WorkspaceInformationUpdated(a);
150150
}
151151

152-
export function getVSCodeWithConfig(omnisharpConfig?: WorkspaceConfiguration, csharpConfig?: WorkspaceConfiguration) {
152+
export function getVSCodeWithConfig() {
153153
const vscode = getFakeVsCode();
154154

155-
const _omnisharpConfig = omnisharpConfig || getWorkspaceConfiguration();
156-
const _csharpConfig = csharpConfig || getWorkspaceConfiguration();
155+
const _omnisharpConfig = getWorkspaceConfiguration();
156+
const _csharpConfig = getWorkspaceConfiguration();
157157

158158
vscode.workspace.getConfiguration = (section?, resource?) =>
159159
{

0 commit comments

Comments
 (0)