File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
src/libraries/System.Net.Http/tests/FunctionalTests Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -285,10 +285,9 @@ public async Task ReservedFrameType_Throws()
285
285
await using Http3LoopbackConnection connection = ( Http3LoopbackConnection ) await server . EstablishGenericConnectionAsync ( ) ;
286
286
await using Http3LoopbackStream stream = await connection . AcceptRequestStreamAsync ( ) ;
287
287
288
- await stream . SendFrameAsync ( ReservedHttp2PriorityFrameId , new byte [ 8 ] ) ;
289
-
290
288
QuicException ex = await AssertThrowsQuicExceptionAsync ( QuicError . ConnectionAborted , async ( ) =>
291
289
{
290
+ await stream . SendFrameAsync ( ReservedHttp2PriorityFrameId , new byte [ 8 ] ) ;
292
291
await stream . HandleRequestAsync ( ) ;
293
292
await using Http3LoopbackStream stream2 = await connection . AcceptRequestStreamAsync ( ) ;
294
293
} ) ;
You can’t perform that action at this time.
0 commit comments