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 08d0bcd commit ccaf881Copy full SHA for ccaf881
src/libraries/Common/tests/System/Net/Http/HttpClientHandlerTest.cs
@@ -2234,13 +2234,7 @@ await LoopbackServerFactory.CreateClientAndServerAsync(async uri =>
2234
{
2235
if (await acceptConnection.Task)
2236
2237
- await IgnoreExceptions(async () =>
2238
- {
2239
- await server.AcceptConnectionAsync(async _ =>
2240
2241
- await clientFinished.WaitAsync(TestHelper.PassingTestTimeout);
2242
- });
2243
+ await IgnoreExceptions(() => server.AcceptConnectionAsync(_ => clientFinished.WaitAsync(TestHelper.PassingTestTimeout)));
2244
}
2245
});
2246
0 commit comments