diff --git a/src/libraries/Common/tests/System/Net/Http/HttpClientHandlerTest.cs b/src/libraries/Common/tests/System/Net/Http/HttpClientHandlerTest.cs index b18dd83dcbeb71..4f944461278d6e 100644 --- a/src/libraries/Common/tests/System/Net/Http/HttpClientHandlerTest.cs +++ b/src/libraries/Common/tests/System/Net/Http/HttpClientHandlerTest.cs @@ -1526,22 +1526,6 @@ await server.AcceptConnectionSendCustomResponseAndCloseAsync( }); } - [OuterLoop("Uses external servers")] - [Fact] - [ActiveIssue("https://github.com/dotnet/runtime/issues/29424")] - public async Task GetAsync_UnicodeHostName_SuccessStatusCodeInResponse() - { - using (HttpClient client = CreateHttpClient()) - { - // international version of the Starbucks website - // punycode: xn--oy2b35ckwhba574atvuzkc.com - string server = "http://\uc2a4\ud0c0\ubc85\uc2a4\ucf54\ub9ac\uc544.com"; - using (HttpResponseMessage response = await client.GetAsync(server)) - { - response.EnsureSuccessStatusCode(); - } - } - } #region Post Methods Tests