Re-enable ConnectionCountingReturnsToZero on non-macOS machines (#2585)
This commit is contained in:
parent
336fe6ed90
commit
a13339dd5c
|
|
@ -12,6 +12,7 @@ using Microsoft.AspNetCore.Server.Kestrel.Core.Internal;
|
|||
using Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure;
|
||||
using Microsoft.AspNetCore.Server.Kestrel.Tests;
|
||||
using Microsoft.AspNetCore.Testing;
|
||||
using Microsoft.AspNetCore.Testing.xunit;
|
||||
using Microsoft.Extensions.Logging.Testing;
|
||||
using Xunit;
|
||||
|
||||
|
|
@ -134,7 +135,8 @@ namespace Microsoft.AspNetCore.Server.Kestrel.FunctionalTests
|
|||
}
|
||||
}
|
||||
|
||||
[Fact(Skip = "https://github.com/aspnet/KestrelHttpServer/issues/2282")]
|
||||
[Fact]
|
||||
[OSSkipCondition(OperatingSystems.MacOSX, SkipReason = "https://github.com/aspnet/KestrelHttpServer/issues/2282")]
|
||||
public async Task ConnectionCountingReturnsToZero()
|
||||
{
|
||||
const int count = 100;
|
||||
|
|
|
|||
Loading…
Reference in New Issue