Skip to content

Commit fae1412

Browse files
authored
Disable test SendMoreThanStreamLimitRequests_Succeeds for all QUIC (#56566)
Disable the test also for MsQuic, not just Mock. Test types: - System.Net.Http.Functional.Tests.SocketsHttpHandlerTest_Http3_MsQuic - System.Net.Http.Functional.Tests.SocketsHttpHandlerTest_Http3_Mock Disabled test tracked by #55957
1 parent 38af2b8 commit fae1412

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

src/libraries/System.Net.Http/tests/FunctionalTests/HttpClientHandlerTest.Http3.cs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -81,17 +81,12 @@ public async Task ClientSettingsReceived_Success(int headerSizeLimit)
8181
}
8282

8383
[Theory]
84+
[ActiveIssue("https://github.com/dotnet/runtime/issues/55957")]
8485
[InlineData(10)]
8586
[InlineData(100)]
8687
[InlineData(1000)]
8788
public async Task SendMoreThanStreamLimitRequests_Succeeds(int streamLimit)
8889
{
89-
// [ActiveIssue("https://github.com/dotnet/runtime/issues/55957")]
90-
if (this.UseQuicImplementationProvider == QuicImplementationProviders.Mock)
91-
{
92-
return;
93-
}
94-
9590
using Http3LoopbackServer server = CreateHttp3LoopbackServer(new Http3Options(){ MaxBidirectionalStreams = streamLimit });
9691

9792
Task serverTask = Task.Run(async () =>

0 commit comments

Comments
 (0)