Index: net/base/server_bound_cert_service_unittest.cc |
diff --git a/net/base/server_bound_cert_service_unittest.cc b/net/base/server_bound_cert_service_unittest.cc |
index f09b47c2cdb4648312f0155c2b9baa602f6ecfc4..825b247ce669ae8979a9e6ace9d4a72f3c1f91df 100644 |
--- a/net/base/server_bound_cert_service_unittest.cc |
+++ b/net/base/server_bound_cert_service_unittest.cc |
@@ -318,7 +318,7 @@ TEST_F(ServerBoundCertServiceTest, ExtractValuesFromBytesEC) { |
// Check that we can retrieve the cert from the bytes. |
scoped_refptr<X509Certificate> x509cert( |
X509Certificate::CreateFromBytes(der_cert.data(), der_cert.size())); |
- EXPECT_TRUE(x509cert != NULL); |
+ EXPECT_TRUE(x509cert.get() != NULL); |
} |
// Tests that the callback of a canceled request is never made. |