Index: remoting/protocol/authenticator_test_base.cc |
diff --git a/remoting/protocol/authenticator_test_base.cc b/remoting/protocol/authenticator_test_base.cc |
index 8311476e612c4eb5d6d721b2127c67ae78e9e6ec..25b0efecb80d4deeee21dc93502b3e023e89ab6b 100644 |
--- a/remoting/protocol/authenticator_test_base.cc |
+++ b/remoting/protocol/authenticator_test_base.cc |
@@ -53,7 +53,7 @@ void AuthenticatorTestBase::SetUp() { |
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(); |