Skip to content

Commit d70fa8f

Browse files
authored
Reenabled test (#58041)
1 parent b11ba76 commit d70fa8f

1 file changed

Lines changed: 2 additions & 8 deletions

File tree

src/libraries/Common/tests/System/Net/Http/HttpClientHandlerTest.cs

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -262,9 +262,9 @@ await LoopbackServer.CreateClientAndServerAsync(async proxyUri =>
262262

263263
public static IEnumerable<object[]> SecureAndNonSecure_IPBasedUri_MemberData() =>
264264
from address in new[] { IPAddress.Loopback, IPAddress.IPv6Loopback }
265-
from useSsl in BoolValues
265+
from useSsl in BoolValues
266266
// we could not create SslStream in browser, [ActiveIssue("https://github.com/dotnet/runtime/issues/37669", TestPlatforms.Browser)]
267-
where PlatformDetection.IsNotBrowser || !useSsl
267+
where PlatformDetection.IsNotBrowser || !useSsl
268268
select new object[] { address, useSsl };
269269

270270
[Theory]
@@ -951,12 +951,6 @@ public async Task ReadAsStreamAsync_HandlerProducesWellBehavedResponseStream(boo
951951
return;
952952
}
953953

954-
if (UseVersion == HttpVersion30 && (chunked is null || chunked is false))
955-
{
956-
// [ActiveIssue("https://github.com/dotnet/runtime/issues/53087")]
957-
return;
958-
}
959-
960954
await LoopbackServerFactory.CreateClientAndServerAsync(async uri =>
961955
{
962956
var request = new HttpRequestMessage(HttpMethod.Get, uri) { Version = UseVersion };

0 commit comments

Comments
 (0)