Index: remoting/protocol/content_description_unittest.cc |
diff --git a/remoting/protocol/content_description_unittest.cc b/remoting/protocol/content_description_unittest.cc |
index 4f610fc2c24894f02f5771efa0162c6ca2b74ca8..eebc39e967f4874f3a89e0ba627fb63745cbc103 100644 |
--- a/remoting/protocol/content_description_unittest.cc |
+++ b/remoting/protocol/content_description_unittest.cc |
@@ -19,7 +19,8 @@ TEST(ContentDescriptionTest, FormatAndParse) { |
scoped_ptr<CandidateSessionConfig> config = |
CandidateSessionConfig::CreateDefault(); |
ContentDescription description( |
- config.Pass(), Authenticator::CreateEmptyAuthenticatorMessage()); |
+ config.Pass(), Authenticator::CreateEmptyAuthenticatorMessage(), |
+ "TestQuicConfigMessage"); |
scoped_ptr<buzz::XmlElement> xml(description.ToXml()); |
LOG(ERROR) << xml->Str(); |
scoped_ptr<ContentDescription> parsed( |
@@ -33,6 +34,8 @@ TEST(ContentDescriptionTest, FormatAndParse) { |
parsed->config()->event_configs()); |
EXPECT_TRUE(description.config()->audio_configs() == |
parsed->config()->audio_configs()); |
+ EXPECT_TRUE(description.quic_config_message() == |
+ parsed->quic_config_message()); |
} |
// Verify that we can still parse configs with transports that we don't |