| Index: crypto/ec_private_key_unittest.cc
|
| diff --git a/crypto/ec_private_key_unittest.cc b/crypto/ec_private_key_unittest.cc
|
| index a052a9a6d4817263fb5307f9d62ac74956573c81..d2ec256deda7461cd6ef8626437c66a3fae8d196 100644
|
| --- a/crypto/ec_private_key_unittest.cc
|
| +++ b/crypto/ec_private_key_unittest.cc
|
| @@ -23,7 +23,7 @@ TEST(ECPrivateKeyUnitTest, OpenSSLStub) {
|
| // back the same exact public key, and the private key should have the same
|
| // value and elliptic curve params.
|
| TEST(ECPrivateKeyUnitTest, InitRandomTest) {
|
| - const std::string password1 = "";
|
| + const std::string password1;
|
| const std::string password2 = "test";
|
|
|
| scoped_ptr<crypto::ECPrivateKey> keypair1(
|
| @@ -86,7 +86,7 @@ TEST(ECPrivateKeyUnitTest, InitRandomTest) {
|
| }
|
|
|
| TEST(ECPrivateKeyUnitTest, BadPasswordTest) {
|
| - const std::string password1 = "";
|
| + const std::string password1;
|
| const std::string password2 = "test";
|
|
|
| scoped_ptr<crypto::ECPrivateKey> keypair1(
|
|
|