Skip to content

Commit 9d9f3db

Browse files
authored
vscode.TaskGroup.Test should be Test, not Clean
1 parent 1401c30 commit 9d9f3db

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)