Skip to content

Commit

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

The 3rd party service has expired certificate

Co-authored-by: Radek Zikmund <[email protected]>
  • Loading branch information
github-actions[bot] and rzikm authored Jan 4, 2024
1 parent 95ca3cf commit 8f280fc
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,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 @@ -225,6 +226,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 8f280fc

Please sign in to comment.