Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1239)

Unified Diff: webrtc/api/quicdatachannel_unittest.cc

Issue 2166873002: Modified PeerConnection and WebRtcSession for end-to-end QuicDataChannel usage. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Minor fix. Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/api/quicdatachannel_unittest.cc
diff --git a/webrtc/api/quicdatachannel_unittest.cc b/webrtc/api/quicdatachannel_unittest.cc
index 7245ccfa2177b54eb381c9da2b61dc6399602253..9a9a1db4a42dd2eb325383697c224d3b190d32e8 100644
--- a/webrtc/api/quicdatachannel_unittest.cc
+++ b/webrtc/api/quicdatachannel_unittest.cc
@@ -604,7 +604,7 @@ TEST_F(QuicDataChannelTest, DoesNotChangeStateWhenTransportChannelReconnects) {
}
// Tests that SetTransportChannel returns false when setting a NULL transport
-// channel or a transport channel that is not equivalent to the one already set.
+// channel.
TEST_F(QuicDataChannelTest, SetTransportChannelReturnValue) {
rtc::scoped_refptr<QuicDataChannel> data_channel =
peer1_.CreateDataChannelWithTransportChannel(4, "label", "protocol");
@@ -614,7 +614,7 @@ TEST_F(QuicDataChannelTest, SetTransportChannelReturnValue) {
EXPECT_TRUE(data_channel->SetTransportChannel(transport_channel));
QuicTransportChannel* other_transport_channel =
peer2_.quic_transport_channel();
- EXPECT_FALSE(data_channel->SetTransportChannel(other_transport_channel));
+ EXPECT_TRUE(data_channel->SetTransportChannel(other_transport_channel));
Taylor Brandstetter 2016/07/21 23:39:57 The old expectation seems correct to me, I don't t
pthatcher1 2016/07/22 17:57:57 As long as it hasn't been open yet, it might be OK
}
// Tests that the QUIC message header is encoded with the correct number of

Powered by Google App Engine
This is Rietveld 408576698