Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -248,8 +248,8 @@ public void Property_Timeout_Works()
[Test]
public void Redirect_Without_Protocol_Works()
{
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");
var requestURI = new Uri ("https://httpbin.org/redirect-to?url=https://github.com/dotnet/android");
var redirectedURI = new Uri ("https://github.com/dotnet/android");
using (var c = new HttpClient (CreateHandler ())) {
var tr = ConnectIgnoreFailure (() => c.GetAsync (requestURI), out bool connectionFailed);
if (connectionFailed)
Expand All @@ -267,8 +267,8 @@ public void Redirect_Without_Protocol_Works()
[Test]
public void Redirect_POST_With_Content_Works ()
{
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");
var requestURI = new Uri ("https://httpbin.org/redirect-to?url=https://github.com/dotnet/android");
var redirectedURI = new Uri ("https://github.com/dotnet/android");
using (var c = new HttpClient (CreateHandler ())) {
var request = new HttpRequestMessage (HttpMethod.Post, requestURI);
request.Content = new StringContent("{}", Encoding.UTF8, "application/json");
Expand Down