Skip to content

Commit

Permalink
fix the wrong override
Browse files Browse the repository at this point in the history
  • Loading branch information
rockspore committed Feb 9, 2024
1 parent de19c35 commit 4c0aac5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/cpp/end2end/tls_credentials_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
#include <gmock/gmock.h>
#include <gtest/gtest.h>

#include "absl/status/status.h"
#include "absl/synchronization/notification.h"

#include <grpc/grpc_security.h>
Expand All @@ -32,7 +33,6 @@
#include <grpcpp/server_builder.h>

#include "src/core/lib/iomgr/load_file.h"
#include "test/core/util/port.h"
#include "test/core/util/test_config.h"
#include "test/cpp/end2end/test_service_impl.h"

Expand Down Expand Up @@ -68,8 +68,8 @@ class NoOpCertificateVerifier : public ExternalCertificateVerifier {
return true;
}

void Cancel(grpc::experimental::TlsCustomVerificationCheckRequest*) override {
}
void Cancel(grpc::experimental::TlsCustomVerificationCheckRequest*,
const absl::Status&) override {}
};

class TlsCredentialsTest : public ::testing::Test {
Expand Down

0 comments on commit 4c0aac5

Please sign in to comment.