Skip to content

Commit

Permalink
Reenabled test (#58041)
Browse files Browse the repository at this point in the history
  • Loading branch information
ManickaP authored Aug 30, 2021
1 parent b11ba76 commit d70fa8f
Showing 1 changed file with 2 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -262,9 +262,9 @@ await LoopbackServer.CreateClientAndServerAsync(async proxyUri =>

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

[Theory]
Expand Down Expand Up @@ -951,12 +951,6 @@ public async Task ReadAsStreamAsync_HandlerProducesWellBehavedResponseStream(boo
return;
}

if (UseVersion == HttpVersion30 && (chunked is null || chunked is false))
{
// [ActiveIssue("https://github.com/dotnet/runtime/issues/53087")]
return;
}

await LoopbackServerFactory.CreateClientAndServerAsync(async uri =>
{
var request = new HttpRequestMessage(HttpMethod.Get, uri) { Version = UseVersion };
Expand Down

0 comments on commit d70fa8f

Please sign in to comment.