summaryrefslogtreecommitdiffstats
path: root/remoting/protocol/v1_authenticator_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'remoting/protocol/v1_authenticator_unittest.cc')
-rw-r--r--remoting/protocol/v1_authenticator_unittest.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/remoting/protocol/v1_authenticator_unittest.cc b/remoting/protocol/v1_authenticator_unittest.cc
index 5ffa317..772661d 100644
--- a/remoting/protocol/v1_authenticator_unittest.cc
+++ b/remoting/protocol/v1_authenticator_unittest.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -77,7 +77,7 @@ class V1AuthenticatorTest : public testing::Test {
void InitAuthenticators(const std::string& client_secret,
const std::string& host_secret) {
host_.reset(new V1HostAuthenticator(
- host_cert_, private_key_.get(), host_secret, kClientJid));
+ host_cert_, *private_key_, host_secret, kClientJid));
client_.reset(new V1ClientAuthenticator(kClientJid, client_secret));
}