Chromium Code Reviews| Index: remoting/host/heartbeat_sender_unittest.cc |
| diff --git a/remoting/host/heartbeat_sender_unittest.cc b/remoting/host/heartbeat_sender_unittest.cc |
| index 8818c156dd1490514b47cecf41d13023172f5488..22a53f9ff64d88ecb0e92b8261b546efd938113a 100644 |
| --- a/remoting/host/heartbeat_sender_unittest.cc |
| +++ b/remoting/host/heartbeat_sender_unittest.cc |
| @@ -66,8 +66,8 @@ TEST_F(HeartbeatSenderTest, DoSendStanza) { |
| EXPECT_CALL(signal_strategy_, CreateIqRequest()) |
| .WillOnce(Return(iq_request)); |
| - EXPECT_CALL(*iq_request, SendIq(buzz::STR_SET, kChromotingBotJid, NotNull())) |
| - .WillOnce(DoAll(DeleteArg<2>(), Return())); |
| + EXPECT_CALL(*iq_request, SendIq(NotNull())) |
|
Wez
2011/08/31 03:42:34
We don't care about the content for this test any
Sergey Ulanov
2011/08/31 23:26:27
Done.
|
| + .WillOnce(DoAll(DeleteArg<0>(), Return())); |
| heartbeat_sender->OnSignallingConnected(&signal_strategy_, kTestJid); |
| message_loop_.RunAllPending(); |