| Index: net/extras/sqlite/sqlite_channel_id_store_unittest.cc
|
| diff --git a/net/extras/sqlite/sqlite_channel_id_store_unittest.cc b/net/extras/sqlite/sqlite_channel_id_store_unittest.cc
|
| index 8cb2bb12062ad712f10b8e5a6638a3c4c41b85f4..7c9b223e3e12757e35c20aa8c3a552caa51b0a3b 100644
|
| --- a/net/extras/sqlite/sqlite_channel_id_store_unittest.cc
|
| +++ b/net/extras/sqlite/sqlite_channel_id_store_unittest.cc
|
| @@ -65,8 +65,8 @@ class SQLiteChannelIDStoreTest : public testing::Test {
|
| ASSERT_TRUE(asn1::ExtractSPKIFromDERCert(*cert_data, &spki));
|
| std::vector<uint8_t> public_key(spki.size());
|
| memcpy(public_key.data(), spki.data(), spki.size());
|
| - *key = crypto::ECPrivateKey::CreateFromEncryptedPrivateKeyInfo(
|
| - ChannelIDService::kEPKIPassword, private_key, public_key);
|
| + *key = crypto::ECPrivateKey::CreateFromEncryptedPrivateKeyInfo(private_key,
|
| + public_key);
|
| }
|
|
|
| static base::Time GetTestCertExpirationTime() {
|
|
|