File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -148,7 +148,7 @@ public async Task ReadExamineEntireReadAsyncReturnsNewData()
148
148
Assert . NotEqual ( readResult , readResult2 ) ;
149
149
}
150
150
151
- [ Fact ( Skip = "https://github.com/aspnet/AspNetCore/issues/4621" ) ]
151
+ [ Fact ]
152
152
public async Task ReadCanBeCancelledViaProvidedCancellationToken ( )
153
153
{
154
154
var pipeReader = new StreamPipeReader ( new HangingStream ( ) ) ;
@@ -157,7 +157,7 @@ public async Task ReadCanBeCancelledViaProvidedCancellationToken()
157
157
await Assert . ThrowsAsync < TaskCanceledException > ( async ( ) => await pipeReader . ReadAsync ( cts . Token ) ) ;
158
158
}
159
159
160
- [ Fact ( Skip = "https://github.com/aspnet/AspNetCore/issues/4621" ) ]
160
+ [ Fact ]
161
161
public async Task ReadCanBeCanceledViaCancelPendingReadWhenReadIsAsync ( )
162
162
{
163
163
var pipeReader = new StreamPipeReader ( new HangingStream ( ) ) ;
Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ public async Task FlushAsyncReturnsCanceledInterleaved()
133
133
}
134
134
}
135
135
136
- [ Fact ( Skip = "https://github.com/aspnet/AspNetCore/issues/4621" ) ]
136
+ [ Fact ]
137
137
public async Task CancelPendingFlushBetweenWritesAllDataIsPreserved ( )
138
138
{
139
139
Stream = new SingleWriteStream ( ) ;
@@ -206,7 +206,7 @@ public async Task CancelPendingFlushAfterAllWritesAllDataIsPreserved()
206
206
Assert . True ( flushResult . IsCanceled ) ;
207
207
}
208
208
209
- [ Fact ( Skip = "https://github.com/aspnet/AspNetCore/issues/4621" ) ]
209
+ [ Fact ]
210
210
public async Task CancelPendingFlushLostOfCancellationsNoDataLost ( )
211
211
{
212
212
var writeSize = 16 ;
You can’t perform that action at this time.
0 commit comments