| Index: remoting/protocol/spake2_authenticator_unittest.cc
|
| diff --git a/remoting/protocol/spake2_authenticator_unittest.cc b/remoting/protocol/spake2_authenticator_unittest.cc
|
| index 9f5e5d024656a2e573a2c3a9f8582a9334f1b877..1b1d31533123b9ac66aef4016862737c8500a81e 100644
|
| --- a/remoting/protocol/spake2_authenticator_unittest.cc
|
| +++ b/remoting/protocol/spake2_authenticator_unittest.cc
|
| @@ -42,8 +42,8 @@ class Spake2AuthenticatorTest : public AuthenticatorTestBase {
|
| protected:
|
| void InitAuthenticators(const std::string& client_secret,
|
| const std::string& host_secret) {
|
| - host_ = Spake2Authenticator::CreateForHost(kHostId, kClientId, host_secret,
|
| - host_cert_, key_pair_,
|
| + host_ = Spake2Authenticator::CreateForHost(kHostId, kClientId, host_cert_,
|
| + key_pair_, host_secret,
|
| Authenticator::WAITING_MESSAGE);
|
| client_ = Spake2Authenticator::CreateForClient(
|
| kClientId, kHostId, client_secret, Authenticator::MESSAGE_READY);
|
|
|