Skip to content

Commit

Permalink
Reenable SslStreamNetworkStreamTests on OSX #46837 (#66393)
Browse files Browse the repository at this point in the history
The underlying issue has been likely fixed by other changes
  • Loading branch information
rzikm committed Mar 15, 2022
1 parent d1b97cd commit 5dc4479
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -742,7 +742,6 @@ public async Task SslStream_TargetHostName_Succeeds(bool useEmptyName, bool useC
[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);
Expand Down Expand Up @@ -805,7 +804,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;
Expand Down Expand Up @@ -852,7 +850,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<SslStream> streams = new List<SslStream>();
Expand Down

0 comments on commit 5dc4479

Please sign in to comment.