Skip to content

Commit 6e29832

Browse files
authored
Try enable all multiple HTTP/2 connections tests on the new scheduling logic
It enables all disabled multiple HTTP/2 connection tests to check if it now work on the new connection scheduling logic introduced by #53851.
1 parent 90b8ddd commit 6e29832

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/libraries/System.Net.Http/tests/FunctionalTests/SocketsHttpHandlerTest.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2078,7 +2078,6 @@ public sealed class SocketsHttpHandlerTest_Http2 : HttpClientHandlerTest_Http2
20782078
public SocketsHttpHandlerTest_Http2(ITestOutputHelper output) : base(output) { }
20792079

20802080
[ConditionalFact(nameof(SupportsAlpn))]
2081-
[ActiveIssue("https://github.com/dotnet/runtime/issues/41078")]
20822081
public async Task Http2_MultipleConnectionsEnabled_ConnectionLimitNotReached_ConcurrentRequestsSuccessfullyHandled()
20832082
{
20842083
const int MaxConcurrentStreams = 2;
@@ -2119,7 +2118,6 @@ public async Task Http2_MultipleConnectionsEnabled_ConnectionLimitNotReached_Con
21192118
}
21202119

21212120
[ConditionalFact(nameof(SupportsAlpn))]
2122-
[ActiveIssue("https://github.com/dotnet/runtime/issues/45204")]
21232121
public async Task Http2_MultipleConnectionsEnabled_InfiniteRequestsCompletelyBlockOneConnection_RemaningRequestsAreHandledByNewConnection()
21242122
{
21252123
const int MaxConcurrentStreams = 2;
@@ -2214,7 +2212,6 @@ public async Task Http2_MultipleConnectionsEnabled_OpenAndCloseMultipleConnectio
22142212

22152213
[ConditionalFact(nameof(SupportsAlpn))]
22162214
[OuterLoop("Incurs long delay")]
2217-
[ActiveIssue("https://github.com/dotnet/runtime/issues/43877")]
22182215
public async Task Http2_MultipleConnectionsEnabled_IdleConnectionTimeoutExpired_ConnectionRemovedAndNewCreated()
22192216
{
22202217
const int MaxConcurrentStreams = 2;

0 commit comments

Comments
 (0)