Skip to content

Commit c47b9ed

Browse files
authored
Unquarantine tests (#39659)
1 parent cb80a40 commit c47b9ed

File tree

3 files changed

+1
-5
lines changed

3 files changed

+1
-5
lines changed

src/Servers/HttpSys/test/FunctionalTests/Listener/RequestBodyTests.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ namespace Microsoft.AspNetCore.Server.HttpSys.Listener;
1717
public class RequestBodyTests
1818
{
1919
[ConditionalFact]
20-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/27399")]
2120
public async Task RequestBody_SyncReadDisabledByDefault_WorksWhenEnabled()
2221
{
2322
string address;

src/Servers/IIS/IIS/test/Common.FunctionalTests/RequestResponseTests.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -156,12 +156,10 @@ public async Task PassesThroughCompressionInProcess()
156156
}
157157

158158
[ConditionalFact]
159-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/26294")]
160-
[SkipNonHelix("This test takes 5 minutes to run")]
161159
public async Task ReadAndWriteSynchronously()
162160
{
163161
var content = new StringContent(new string('a', 100000));
164-
for (int i = 0; i < 500; i++)
162+
for (int i = 0; i < 50; i++)
165163
{
166164
var response = await _fixture.Client.PostAsync("ReadAndWriteSynchronously", content);
167165
var responseText = await response.Content.ReadAsStringAsync();

src/Servers/IIS/IIS/test/IIS.Tests/ClientDisconnectTests.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,6 @@ public async Task ReaderThrowsCanceledException()
225225
}
226226

227227
[ConditionalFact]
228-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/27400")]
229228
public async Task ReaderThrowsResetExceptionOnInvalidBody()
230229
{
231230
var requestStartedCompletionSource = CreateTaskCompletionSource();

0 commit comments

Comments
 (0)