Chromium Code Reviews| Index: remoting/host/chromoting_host_unittest.cc |
| diff --git a/remoting/host/chromoting_host_unittest.cc b/remoting/host/chromoting_host_unittest.cc |
| index 1410371a9bc8b5049461e0246697020ac5377808..1f42f3a7765129b0effa9846859fef0012f4cc97 100644 |
| --- a/remoting/host/chromoting_host_unittest.cc |
| +++ b/remoting/host/chromoting_host_unittest.cc |
| @@ -607,9 +607,10 @@ TEST_F(ChromotingHostTest, IncomingSessionOverload) { |
| protocol::SessionManager::IncomingSessionResponse response = |
| protocol::SessionManager::DECLINE; |
| - host_->OnIncomingSession(session_unowned1_.release(), &response); |
| - EXPECT_EQ(protocol::SessionManager::ACCEPT, response); |
| + host_->OnIncomingSession(session_unowned1_.release(), &response); |
| + EXPECT_EQ(protocol::SessionManager::ACCEPT, response); |
| + host_->OnSessionAuthenticating(NULL); |
|
Sergey Ulanov
2014/03/27 19:06:55
s/NULL/host_->clients_.front()/
kelvinp
2014/04/01 21:23:49
Done.
|
| host_->OnIncomingSession(session_unowned2_.get(), &response); |
| EXPECT_EQ(protocol::SessionManager::OVERLOAD, response); |