| Index: trunk/src/remoting/protocol/authenticator_test_base.cc
|
| ===================================================================
|
| --- trunk/src/remoting/protocol/authenticator_test_base.cc (revision 239942)
|
| +++ trunk/src/remoting/protocol/authenticator_test_base.cc (working copy)
|
| @@ -53,7 +53,7 @@
|
| std::string key_string;
|
| ASSERT_TRUE(base::ReadFileToString(key_path, &key_string));
|
| std::string key_base64;
|
| - ASSERT_TRUE(base::Base64Encode(key_string, &key_base64));
|
| + base::Base64Encode(key_string, &key_base64);
|
| key_pair_ = RsaKeyPair::FromString(key_base64);
|
| ASSERT_TRUE(key_pair_.get());
|
| host_public_key_ = key_pair_->GetPublicKey();
|
|
|