File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
tests/Mono.Android-Tests/Xamarin.Android.Net Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -246,8 +246,8 @@ public void Property_Timeout_Works()
246
246
[ Test ]
247
247
public void Redirect_Without_Protocol_Works ( )
248
248
{
249
- var requestURI = new Uri ( "https://httpbin.org/redirect-to?url=https://github.com/xamarin/xamarin- android" ) ;
250
- var redirectedURI = new Uri ( "https://github.com/xamarin/xamarin- android" ) ;
249
+ var requestURI = new Uri ( "https://httpbin.org/redirect-to?url=https://github.com/dotnet/ android" ) ;
250
+ var redirectedURI = new Uri ( "https://github.com/dotnet/ android" ) ;
251
251
using ( var c = new HttpClient ( CreateHandler ( ) ) ) {
252
252
var tr = ConnectIgnoreFailure ( ( ) => c . GetAsync ( requestURI ) , out bool connectionFailed ) ;
253
253
if ( connectionFailed )
@@ -265,8 +265,8 @@ public void Redirect_Without_Protocol_Works()
265
265
[ Test ]
266
266
public void Redirect_POST_With_Content_Works ( )
267
267
{
268
- var requestURI = new Uri ( "https://httpbin.org/redirect-to?url=https://github.com/xamarin/xamarin- android" ) ;
269
- var redirectedURI = new Uri ( "https://github.com/xamarin/xamarin- android" ) ;
268
+ var requestURI = new Uri ( "https://httpbin.org/redirect-to?url=https://github.com/dotnet/ android" ) ;
269
+ var redirectedURI = new Uri ( "https://github.com/dotnet/ android" ) ;
270
270
using ( var c = new HttpClient ( CreateHandler ( ) ) ) {
271
271
var request = new HttpRequestMessage ( HttpMethod . Post , requestURI ) ;
272
272
request . Content = new StringContent ( "{}" , Encoding . UTF8 , "application/json" ) ;
You can’t perform that action at this time.
0 commit comments