| Index: remoting/protocol/jingle_session_unittest.cc
|
| diff --git a/remoting/protocol/jingle_session_unittest.cc b/remoting/protocol/jingle_session_unittest.cc
|
| index dcca077221b9a8dcc5348d832cfed44195b4971a..f06487960ed3425c2a0b64cdfad6b3d1548cccba 100644
|
| --- a/remoting/protocol/jingle_session_unittest.cc
|
| +++ b/remoting/protocol/jingle_session_unittest.cc
|
| @@ -196,6 +196,9 @@ class JingleSessionTest : public testing::Test {
|
| EXPECT_CALL(host_session_event_handler_,
|
| OnSessionStateChange(Session::CONNECTED))
|
| .Times(AtMost(1));
|
| + EXPECT_CALL(host_session_event_handler_,
|
| + OnSessionStateChange(Session::AUTHENTICATING))
|
| + .Times(AtMost(1));
|
| if (expect_fail) {
|
| EXPECT_CALL(host_session_event_handler_,
|
| OnSessionStateChange(Session::FAILED))
|
| @@ -217,6 +220,9 @@ class JingleSessionTest : public testing::Test {
|
| EXPECT_CALL(client_session_event_handler_,
|
| OnSessionStateChange(Session::CONNECTED))
|
| .Times(AtMost(1));
|
| + EXPECT_CALL(client_session_event_handler_,
|
| + OnSessionStateChange(Session::AUTHENTICATING))
|
| + .Times(AtMost(1));
|
| if (expect_fail) {
|
| EXPECT_CALL(client_session_event_handler_,
|
| OnSessionStateChange(Session::FAILED))
|
|
|