| Index: net/base/x509_util_openssl_unittest.cc
|
| diff --git a/net/base/x509_util_openssl_unittest.cc b/net/base/x509_util_openssl_unittest.cc
|
| index 23c33a36cc7702339ba519e62f14e7a294337262..0647a6297d0a10bf84ee689611fa79822f165b10 100644
|
| --- a/net/base/x509_util_openssl_unittest.cc
|
| +++ b/net/base/x509_util_openssl_unittest.cc
|
| @@ -18,10 +18,10 @@ TEST(X509UtilOpenSSLTest, CreateOriginBoundCertNotImplemented) {
|
| scoped_ptr<crypto::RSAPrivateKey> private_key(
|
| crypto::RSAPrivateKey::Create(1024));
|
| std::string der_cert;
|
| - EXPECT_FALSE(x509_util::CreateOriginBoundCertRSA(private_key.get(),
|
| - origin, 1,
|
| - base::TimeDelta::FromDays(1),
|
| - &der_cert));
|
| + EXPECT_FALSE(x509_util::CreateOriginBoundCert(private_key.get(),
|
| + origin, 1,
|
| + base::TimeDelta::FromDays(1),
|
| + &der_cert));
|
| EXPECT_TRUE(der_cert.empty());
|
|
|
| }
|
|
|