| Index: net/cert/internal/cert_issuer_source_static_unittest.cc
|
| diff --git a/net/cert/internal/cert_issuer_source_static_unittest.cc b/net/cert/internal/cert_issuer_source_static_unittest.cc
|
| index 949035c0eb10635a22eb11f2b94f1adab8beaa92..c6d4fff18e999195eea3dbef2c1e7142648f82ce 100644
|
| --- a/net/cert/internal/cert_issuer_source_static_unittest.cc
|
| +++ b/net/cert/internal/cert_issuer_source_static_unittest.cc
|
| @@ -14,10 +14,6 @@ namespace net {
|
|
|
| namespace {
|
|
|
| -void NotCalled(CertIssuerSource::Request* req) {
|
| - ADD_FAILURE() << "NotCalled was called";
|
| -}
|
| -
|
| ::testing::AssertionResult ReadTestPem(const std::string& file_name,
|
| const std::string& block_name,
|
| std::string* result) {
|
| @@ -137,7 +133,7 @@ TEST_F(CertIssuerSourceStaticTest, IsNotAsync) {
|
| CertIssuerSourceStatic source;
|
| source.AddCert(i1_1_);
|
| std::unique_ptr<CertIssuerSource::Request> request;
|
| - source.AsyncGetIssuersOf(c1_.get(), base::Bind(&NotCalled), &request);
|
| + source.AsyncGetIssuersOf(c1_.get(), &request);
|
| EXPECT_EQ(nullptr, request);
|
| }
|
|
|
|
|