File tree Expand file tree Collapse file tree 3 files changed +1
-5
lines changed
HttpSys/test/FunctionalTests/Listener Expand file tree Collapse file tree 3 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,6 @@ namespace Microsoft.AspNetCore.Server.HttpSys.Listener;
1717public 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 ;
Original file line number Diff line number Diff 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 ( ) ;
Original file line number Diff line number Diff 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 ( ) ;
You can’t perform that action at this time.
0 commit comments