Skip to content

Commit

Permalink
Update Http2_FlowControl_ClientDoesNotExceedWindows to use ByteAtATim…
Browse files Browse the repository at this point in the history
…eContent for compat with recent buffering change. (dotnet/corefx#39472)

Clear ActiveIssue as original issue in dotnet/corefx#38799 could not be reproduced.

Commit migrated from dotnet/corefx@929bd81
  • Loading branch information
scalablecory authored Jul 15, 2019
1 parent 055fcba commit fdf096a
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1163,15 +1163,14 @@ private static async Task<int> ReadToEndOfStream(Http2LoopbackConnection connect
return bytesReceived;
}

[ActiveIssue(38799)]
[OuterLoop("Uses Task.Delay")]
[ConditionalFact(nameof(SupportsAlpn))]
public async Task Http2_FlowControl_ClientDoesNotExceedWindows()
{
const int InitialWindowSize = 65535;
const int ContentSize = 100_000;

var content = new ByteArrayContent(TestHelper.GenerateRandomContent(ContentSize));
var content = new ByteAtATimeContent(ContentSize);

using (var server = Http2LoopbackServer.CreateServer())
using (HttpClient client = CreateHttpClient())
Expand Down

0 comments on commit fdf096a

Please sign in to comment.