Skip to content

Commit 187eacd

Browse files
authored
Reenable concurrent read/write test (#25017)
1 parent 38563dd commit 187eacd

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/Servers/IIS/IIS/test/Common.FunctionalTests/Inprocess/SynchronousReadAndWriteTests.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,11 @@ public SynchronousReadAndWriteTests(IISTestSiteFixture fixture): base(fixture)
2222
}
2323

2424
[ConditionalFact]
25-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/7341")]
2625
public async Task ReadAndWriteSynchronously()
2726
{
28-
for (int i = 0; i < 100; i++)
27+
var content = new StringContent(new string('a', 100000));
28+
for (int i = 0; i < 500; i++)
2929
{
30-
var content = new StringContent(new string('a', 100000));
3130
var response = await _fixture.Client.PostAsync("ReadAndWriteSynchronously", content);
3231
var responseText = await response.Content.ReadAsStringAsync();
3332

0 commit comments

Comments
 (0)