Skip to content

Commit

Permalink
Reenable SslStreamNetworkStreamTests on OSX dotnet#46837 (dotnet#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 authored and radekdoulik committed Mar 30, 2022
1 parent 61b1b8e commit 7c196b5
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 @@ 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);
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 7c196b5

Please sign in to comment.