Skip to content
This repository has been archived by the owner on Jun 21, 2020. It is now read-only.

Commit

Permalink
Removed Fakes warnings (#44)
Browse files Browse the repository at this point in the history
* Removed Fakes warnigns

* Fixed VSTS Tests
  • Loading branch information
almguru committed Jun 28, 2017
1 parent bd2f985 commit 1919904
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 1 deletion.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
10 changes: 9 additions & 1 deletion src/Team-Services-Bot.Api.UnitTests/Services/VstsServiceTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,15 @@ public async Task GetProjectsTest()
}
};

var expected = new List<TeamProjectReference>();
var expected = new List<TeamProjectReference>
{
new TeamProjectReference
{
Id = Guid.NewGuid(),
Name = "My Project",
Url = "https://myaccount.visualstudio.com/my%20project"
}
};

var clients = new VssHttpClientBase[]
{
Expand Down
1 change: 1 addition & 0 deletions src/Team-Services-Bot.Api/Web.Debug.config
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<!-- For more information on using web.config transformation visit http://go.microsoft.com/fwlink/?LinkId=125889 -->

<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
<appSettings configSource="AppSettings.config.user" />
<!--
In the example below, the "SetAttributes" transform will change the value of
"connectionString" to use "ReleaseSQLServer" only when the "Match" locator
Expand Down

0 comments on commit 1919904

Please sign in to comment.