Skip to content

Commit 82ebb10

Browse files
authored
Merge pull request microsoft#30207 from jgranick/patch-1
vscode.TaskGroup.Test should be Test, not Clean
2 parents 2dfec45 + 9d9f3db commit 82ebb10

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/vs/workbench/api/node/extHostTypes.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1042,7 +1042,7 @@ export class TaskGroup implements vscode.TaskGroup {
10421042

10431043
public static Rebuild: TaskGroup = new TaskGroup('rebuild', 'Rebuild');
10441044

1045-
public static Test: TaskGroup = new TaskGroup('clean', 'Clean');
1045+
public static Test: TaskGroup = new TaskGroup('test', 'Test');
10461046

10471047
constructor(id: string, label: string) {
10481048
if (typeof id !== 'string') {
@@ -1306,4 +1306,4 @@ export class ThemeColor {
13061306
constructor(id: string) {
13071307
this.id = id;
13081308
}
1309-
}
1309+
}

0 commit comments

Comments
 (0)