Skip to content

Commit

Permalink
Temporarily disable NoCallback_RevokedCertificate_NoRevocationCheckin…
Browse files Browse the repository at this point in the history
…g_Succeeds (#79407)

The 3rd party service has expired certificate
  • Loading branch information
rzikm authored Dec 9, 2022
1 parent 41ae1ae commit c1576ff
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,8 @@ public async Task UseCallback_ValidCertificate_ExpectedValuesDuringCallback(Conf
{
bool callbackCalled = false;
handler.CheckCertificateRevocationList = checkRevocation;
handler.ServerCertificateCustomValidationCallback = (request, cert, chain, errors) => {
handler.ServerCertificateCustomValidationCallback = (request, cert, chain, errors) =>
{
callbackCalled = true;
Assert.NotNull(request);
Expand Down Expand Up @@ -227,6 +228,7 @@ public async Task NoCallback_BadCertificate_ThrowsException(string url)
}

[OuterLoop("Uses external servers")]
[ActiveIssue("https://github.com/dotnet/runtime/issues/77726")]
[ConditionalFact(nameof(ClientSupportsDHECipherSuites))]
public async Task NoCallback_RevokedCertificate_NoRevocationChecking_Succeeds()
{
Expand Down

0 comments on commit c1576ff

Please sign in to comment.