Skip to content

Commit

Permalink
Update VSO to VSTS
Browse files Browse the repository at this point in the history
  • Loading branch information
Xiaomin Wu committed Jan 15, 2016
1 parent 5bdc112 commit dbb3f95
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Kudu.FunctionalTests/DeploymentManagerTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,7 @@ await DeployPayloadHelperAsync(appManager, client =>

Assert.Equal(1, results.Count);
Assert.Equal(DeployStatus.Success, results[0].Status);
Assert.Equal("VSO", results[0].Deployer);
Assert.Equal("VSTS", results[0].Deployer);
KuduAssert.VerifyUrl(appManager.SiteUrl, "Hello Kudu");
});
}
Expand Down
4 changes: 2 additions & 2 deletions Kudu.Services.Test/VSOHandlerFacts.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ public void VSOHandlerBasic()
Assert.Equal(DeployAction.ProcessDeployment, result);
Assert.NotNull(deploymentInfo);
Assert.Null(deploymentInfo.CommitId);
Assert.Equal("VSO", deploymentInfo.TargetChangeset.AuthorName);
Assert.Equal("VSO", deploymentInfo.TargetChangeset.AuthorEmail);
Assert.Equal("VSTS", deploymentInfo.TargetChangeset.AuthorName);
Assert.Equal("VSTS", deploymentInfo.TargetChangeset.AuthorEmail);
Assert.Equal(Resources.Vso_Synchronizing, deploymentInfo.TargetChangeset.Message);

var repositoryUri = new Uri(deploymentInfo.RepositoryUrl);
Expand Down
2 changes: 1 addition & 1 deletion Kudu.Services/Resources.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Kudu.Services/Resources.resx
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@
<value>No changes found.</value>
</data>
<data name="Vso_Synchronizing" xml:space="preserve">
<value>Synchronizing changes from VSO ...</value>
<value>Synchronizing changes from VSTS ...</value>
</data>
<data name="Error_LogDetailsNotFound" xml:space="preserve">
<value>LogId '{0}' was not found in Deployment '{1}'.</value>
Expand Down
2 changes: 1 addition & 1 deletion Kudu.Services/ServiceHookHandlers/VSOHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ protected virtual GitDeploymentInfo GetDeploymentInfo(HttpRequestBase request, J

protected virtual string GetDeployer()
{
return "VSO";
return "VSTS";
}

private Uri GetRemoteUrl(JObject payload)
Expand Down

0 comments on commit dbb3f95

Please sign in to comment.