Skip to content

Commit

Permalink
Fix test issue caused by HTTPS redirect (#4332)
Browse files Browse the repository at this point in the history
  • Loading branch information
joelverhagen authored Jul 5, 2017
1 parent 192adc1 commit ffcf527
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace NuGetGallery.SearchClient
public class RetryingHttpClientWrapperFacts
{
private static readonly Uri ValidUri1 = new Uri("http://www.microsoft.com");
private static readonly Uri ValidUri2 = new Uri("http://www.nuget.org");
private static readonly Uri ValidUri2 = new Uri("https://www.nuget.org");
private static readonly Uri InvalidUri1 = new Uri("http://nonexisting.domain.atleast.ihope");
private static readonly Uri InvalidUri2 = new Uri("http://nonexisting.domain.atleast.ihope/foo");
private static readonly Uri InvalidUri3 = new Uri("http://www.nuget.org/com/ibm/mq/com.ibm.mq.soap/7.0.1.10/com.ibm.mq.soap-7.0.1.10");
Expand Down

0 comments on commit ffcf527

Please sign in to comment.