We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38563dd commit 187eacdCopy full SHA for 187eacd
src/Servers/IIS/IIS/test/Common.FunctionalTests/Inprocess/SynchronousReadAndWriteTests.cs
@@ -22,12 +22,11 @@ public SynchronousReadAndWriteTests(IISTestSiteFixture fixture): base(fixture)
22
}
23
24
[ConditionalFact]
25
- [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/7341")]
26
public async Task ReadAndWriteSynchronously()
27
{
28
- for (int i = 0; i < 100; i++)
+ var content = new StringContent(new string('a', 100000));
+ for (int i = 0; i < 500; i++)
29
30
- var content = new StringContent(new string('a', 100000));
31
var response = await _fixture.Client.PostAsync("ReadAndWriteSynchronously", content);
32
var responseText = await response.Content.ReadAsStringAsync();
33
0 commit comments