Index: webrtc/p2p/base/dtlstransportchannel_unittest.cc |
diff --git a/webrtc/p2p/base/dtlstransportchannel_unittest.cc b/webrtc/p2p/base/dtlstransportchannel_unittest.cc |
index efbdba0c902c1934789e3bc4cefd70260cc67c01..0cf500f133a8c2dbf882714142e010ed73a29e97 100644 |
--- a/webrtc/p2p/base/dtlstransportchannel_unittest.cc |
+++ b/webrtc/p2p/base/dtlstransportchannel_unittest.cc |
@@ -162,12 +162,11 @@ class DtlsTestClient : public sigslot::has_slots<> { |
// without any fingerprint. |
(action == cricket::CA_ANSWER && !remote_cert) |
? nullptr |
- : local_fingerprint.get(), |
- cricket::Candidates()); |
+ : local_fingerprint.get()); |
cricket::TransportDescription remote_desc( |
std::vector<std::string>(), kIceUfrag1, kIcePwd1, cricket::ICEMODE_FULL, |
- remote_role, remote_fingerprint.get(), cricket::Candidates()); |
+ remote_role, remote_fingerprint.get()); |
bool expect_success = (flags & NF_EXPECT_FAILURE) ? false : true; |
// If |expect_success| is false, expect SRTD or SLTD to fail when |