Merge pull request #30207 from jgranick/patch-1

vscode.TaskGroup.Test should be Test, not Clean
This commit is contained in:
Dirk Bäumer
2017-07-10 09:06:43 +02:00
committed by GitHub

View File

@@ -1042,7 +1042,7 @@ export class TaskGroup implements vscode.TaskGroup {
public static Rebuild: TaskGroup = new TaskGroup('rebuild', 'Rebuild');
public static Test: TaskGroup = new TaskGroup('clean', 'Clean');
public static Test: TaskGroup = new TaskGroup('test', 'Test');
constructor(id: string, label: string) {
if (typeof id !== 'string') {
@@ -1306,4 +1306,4 @@ export class ThemeColor {
constructor(id: string) {
this.id = id;
}
}
}