File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
src/Http/Http.Extensions/test Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change 5
5
using System . Text ;
6
6
using System . Text . Json ;
7
7
using System . Text . Json . Serialization ;
8
+ using Microsoft . AspNetCore . Testing ;
8
9
9
10
#nullable enable
10
11
@@ -302,6 +303,7 @@ async IAsyncEnumerable<int> AsyncEnumerable()
302
303
}
303
304
304
305
[ Fact ]
306
+ [ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/45557" ) ]
305
307
public async Task WriteAsJsonAsyncGeneric_AsyncEnumerable_ClosedConnecton ( )
306
308
{
307
309
// Arrange
@@ -336,6 +338,7 @@ async IAsyncEnumerable<int> AsyncEnumerable([EnumeratorCancellation] Cancellatio
336
338
}
337
339
338
340
[ Fact ]
341
+ [ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/45557" ) ]
339
342
public async Task WriteAsJsonAsync_AsyncEnumerable_ClosedConnecton ( )
340
343
{
341
344
// Arrange
@@ -370,6 +373,7 @@ async IAsyncEnumerable<int> AsyncEnumerable([EnumeratorCancellation] Cancellatio
370
373
}
371
374
372
375
[ Fact ]
376
+ [ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/45557" ) ]
373
377
public async Task WriteAsJsonAsync_AsyncEnumerable_UserPassedTokenThrows ( )
374
378
{
375
379
// Arrange
@@ -404,7 +408,8 @@ async IAsyncEnumerable<int> AsyncEnumerable([EnumeratorCancellation] Cancellatio
404
408
}
405
409
406
410
[ Fact ]
407
- public async Task WriteAsJsonAsyncGeneric_AsyncEnumerableG_UserPassedTokenThrows ( )
411
+ [ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/45557" ) ]
412
+ public async Task WriteAsJsonAsyncGeneric_AsyncEnumerable_UserPassedTokenThrows ( )
408
413
{
409
414
// Arrange
410
415
var body = new MemoryStream ( ) ;
You can’t perform that action at this time.
0 commit comments