From b60b9889e0d8cf95002a2d2acfac21914b519bcf Mon Sep 17 00:00:00 2001 From: Jonathan Pobst Date: Tue, 21 Mar 2023 15:39:19 -0500 Subject: [PATCH] [Mono.Android-Tests] Stop using google URL that is returning 429 - Too Many Requests --- tests/Mono.Android-Tests/System.Net/SslTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Mono.Android-Tests/System.Net/SslTest.cs b/tests/Mono.Android-Tests/System.Net/SslTest.cs index 37662f646e8..7f85a490908 100644 --- a/tests/Mono.Android-Tests/System.Net/SslTest.cs +++ b/tests/Mono.Android-Tests/System.Net/SslTest.cs @@ -83,7 +83,7 @@ public void HttpsShouldWork () void DoHttpsShouldWork () { // string url = "https://bugzilla.novell.com/show_bug.cgi?id=634817"; - string url = "https://encrypted.google.com/"; + string url = "https://dotnet.microsoft.com/"; // string url = "http://slashdot.org"; HttpWebRequest request = (HttpWebRequest) WebRequest.Create(url); request.Method = "GET";