| Index: remoting/host/chromoting_host_unittest.cc
|
| diff --git a/remoting/host/chromoting_host_unittest.cc b/remoting/host/chromoting_host_unittest.cc
|
| index 2889a3ef5cef09317d60b070b104afb255a3851f..2838437eeb37f06689c9041a2b0328f7ea9073d8 100644
|
| --- a/remoting/host/chromoting_host_unittest.cc
|
| +++ b/remoting/host/chromoting_host_unittest.cc
|
| @@ -398,8 +398,10 @@ TEST_F(ChromotingHostTest, CurtainModeFailSecond) {
|
| InSequence s;
|
| EXPECT_CALL(*curtain_, EnableCurtainMode(true))
|
| .WillOnce(QuitMainMessageLoop(&message_loop_));
|
| - EXPECT_CALL(*disconnect_window_, Show(_, _))
|
| - .Times(0);
|
| + EXPECT_CALL(*local_input_monitor_, Start(_))
|
| + .Times(1);
|
| + EXPECT_CALL(*disconnect_window_, Show(_, "user@domain"))
|
| + .Times(1);
|
| EXPECT_CALL(video_stub_, ProcessVideoPacket(_, _))
|
| .WillOnce(DoAll(
|
| InvokeWithoutArgs(
|
|
|