diff --git a/tests/Mono.Android-Tests/Xamarin.Android.Net/AndroidClientHandlerTests.cs b/tests/Mono.Android-Tests/Xamarin.Android.Net/AndroidClientHandlerTests.cs index 361adc860eb..9046c528909 100644 --- a/tests/Mono.Android-Tests/Xamarin.Android.Net/AndroidClientHandlerTests.cs +++ b/tests/Mono.Android-Tests/Xamarin.Android.Net/AndroidClientHandlerTests.cs @@ -246,7 +246,7 @@ public void Property_Timeout_Works() [Test] public void Redirect_Without_Protocol_Works() { - var requestURI = new Uri ("https://httpbingo.org/redirect-to?url=https://github.com/xamarin/xamarin-android"); + var requestURI = new Uri ("https://httpbin.org/redirect-to?url=https://github.com/xamarin/xamarin-android"); var redirectedURI = new Uri ("https://github.com/xamarin/xamarin-android"); using (var c = new HttpClient (CreateHandler ())) { var tr = ConnectIgnoreFailure (() => c.GetAsync (requestURI), out bool connectionFailed); @@ -265,7 +265,7 @@ public void Redirect_Without_Protocol_Works() [Test] public void Redirect_POST_With_Content_Works () { - var requestURI = new Uri ("https://httpbingo.org/redirect-to?url=https://github.com/xamarin/xamarin-android"); + var requestURI = new Uri ("https://httpbin.org/redirect-to?url=https://github.com/xamarin/xamarin-android"); var redirectedURI = new Uri ("https://github.com/xamarin/xamarin-android"); using (var c = new HttpClient (CreateHandler ())) { var request = new HttpRequestMessage (HttpMethod.Post, requestURI);