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 @@ -248,8 +248,8 @@ public void Property_Timeout_Works()
248
248
[ Test ]
249
249
public void Redirect_Without_Protocol_Works ( )
250
250
{
251
- var requestURI = new Uri ( "https://httpbin.org/redirect-to?url=https://github.com/xamarin/xamarin- android" ) ;
252
- var redirectedURI = new Uri ( "https://github.com/xamarin/xamarin- android" ) ;
251
+ var requestURI = new Uri ( "https://httpbin.org/redirect-to?url=https://github.com/dotnet/ android" ) ;
252
+ var redirectedURI = new Uri ( "https://github.com/dotnet/ android" ) ;
253
253
using ( var c = new HttpClient ( CreateHandler ( ) ) ) {
254
254
var tr = ConnectIgnoreFailure ( ( ) => c . GetAsync ( requestURI ) , out bool connectionFailed ) ;
255
255
if ( connectionFailed )
@@ -267,8 +267,8 @@ public void Redirect_Without_Protocol_Works()
267
267
[ Test ]
268
268
public void Redirect_POST_With_Content_Works ( )
269
269
{
270
- var requestURI = new Uri ( "https://httpbin.org/redirect-to?url=https://github.com/xamarin/xamarin- android" ) ;
271
- var redirectedURI = new Uri ( "https://github.com/xamarin/xamarin- android" ) ;
270
+ var requestURI = new Uri ( "https://httpbin.org/redirect-to?url=https://github.com/dotnet/ android" ) ;
271
+ var redirectedURI = new Uri ( "https://github.com/dotnet/ android" ) ;
272
272
using ( var c = new HttpClient ( CreateHandler ( ) ) ) {
273
273
var request = new HttpRequestMessage ( HttpMethod . Post , requestURI ) ;
274
274
request . Content = new StringContent ( "{}" , Encoding . UTF8 , "application/json" ) ;
You can’t perform that action at this time.
0 commit comments