| Index: webrtc/api/webrtcsdp_unittest.cc | 
| diff --git a/webrtc/api/webrtcsdp_unittest.cc b/webrtc/api/webrtcsdp_unittest.cc | 
| index 2b63c798b07755aa1bb963b945984c9edc1f81d2..f222b3fc9a5932f277b01e80f49d05e3a35e85ec 100644 | 
| --- a/webrtc/api/webrtcsdp_unittest.cc | 
| +++ b/webrtc/api/webrtcsdp_unittest.cc | 
| @@ -2114,6 +2114,9 @@ TEST_F(WebRtcSdpTest, SerializeSessionDescriptionWithH264) { | 
| EXPECT_NE(std::string::npos, fmtp_value.find("level-asymmetry-allowed=1")); | 
| EXPECT_NE(std::string::npos, fmtp_value.find("packetization-mode=1")); | 
| EXPECT_NE(std::string::npos, fmtp_value.find("profile-level-id=42e01f")); | 
| +  // Check that there are no spaces after semicolons. | 
| +  // https://bugs.webrtc.org/5793 | 
| +  EXPECT_EQ(std::string::npos, fmtp_value.find("; ")); | 
| } | 
|  | 
| TEST_F(WebRtcSdpTest, DeserializeSessionDescription) { | 
|  |