diff --git a/src/libraries/System.Net.Security/tests/FunctionalTests/SslStreamNetworkStreamTest.cs b/src/libraries/System.Net.Security/tests/FunctionalTests/SslStreamNetworkStreamTest.cs index 44dbc87d84b26..e64de12e3affd 100644 --- a/src/libraries/System.Net.Security/tests/FunctionalTests/SslStreamNetworkStreamTest.cs +++ b/src/libraries/System.Net.Security/tests/FunctionalTests/SslStreamNetworkStreamTest.cs @@ -727,7 +727,6 @@ await TestConfiguration.WhenAllOrAnyFailedWithTimeout( [Theory] [InlineData(true)] [InlineData(false)] - [ActiveIssue("https://github.com/dotnet/runtime/issues/46837", TestPlatforms.OSX)] public async Task SslStream_UntrustedCaWithCustomCallback_OK(bool usePartialChain) { int split = Random.Shared.Next(0, certificates.serverChain.Count - 1); @@ -790,7 +789,6 @@ public async Task SslStream_UntrustedCaWithCustomCallback_OK(bool usePartialChai [PlatformSpecific(TestPlatforms.AnyUnix)] [InlineData(true)] [InlineData(false)] - [ActiveIssue("https://github.com/dotnet/runtime/issues/46837", TestPlatforms.OSX)] public async Task SslStream_UntrustedCaWithCustomCallback_Throws(bool customCallback) { string errorMessage; @@ -837,7 +835,6 @@ public async Task SslStream_UntrustedCaWithCustomCallback_Throws(bool customCall } [ConditionalFact] - [ActiveIssue("https://github.com/dotnet/runtime/issues/46837", TestPlatforms.OSX)] public async Task SslStream_ClientCertificate_SendsChain() { List streams = new List();