Skip to content

Commit

Permalink
Fix load test failure due to incorrect test setup (#3957)
Browse files Browse the repository at this point in the history
  • Loading branch information
xavierdecoster committed May 16, 2017
1 parent 423dc0b commit 97c04fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/NuGetGallery.LoadTests/LoadTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public async Task FindPackagesByIdForPredefinedPackage()
public async Task FindPackagesBySpecificIdAndVersion()
{
string packageId = "Microsoft.Web.Infrastructure";
string version = "1.0.0.0";
string version = "1.0.0";
string url = UrlHelper.V2FeedRootUrl + @"Packages(Id='" + packageId + "',Version='" + version + "')";
string expectedText = @"<id>" + UrlHelper.V2FeedRootUrl + "Packages(Id='" + packageId + "',Version='" + version + "')</id>";
var odataHelper = new ODataHelper();
Expand Down

0 comments on commit 97c04fe

Please sign in to comment.