Chromium Code Reviews| Index: webrtc/api/webrtcsession_unittest.cc |
| diff --git a/webrtc/api/webrtcsession_unittest.cc b/webrtc/api/webrtcsession_unittest.cc |
| index ee1d19b23adaee4cf899e28666b294dafc0aa127..a439a1ee1f10ad4eb5c5fa8ea958d03754c9090c 100644 |
| --- a/webrtc/api/webrtcsession_unittest.cc |
| +++ b/webrtc/api/webrtcsession_unittest.cc |
| @@ -2242,7 +2242,8 @@ TEST_F(WebRtcSessionTest, |
| candidates = local_desc->candidates(kMediaContentIndex0); |
| size_t num_local_candidates = candidates->count(); |
| // Enable Continual Gathering |
| - session_->SetIceConfig(cricket::IceConfig(-1, -1, true, false, -1, true)); |
| + session_->SetIceConfig(cricket::IceConfig(-1, -1, cricket::GATHER_CONTINUALLY, |
| + false, -1, true, -1)); |
|
pthatcher1
2016/06/29 18:53:27
Since these are almost all the defaults, why not u
honghaiz3
2016/06/29 20:19:22
Done.
|
| // Bring down the network interface to trigger candidate removals. |
| RemoveInterface(rtc::SocketAddress(kClientAddrHost1, kClientAddrPort)); |
| // Verify that all local candidates are removed. |