Fix webrtcsdp_unittest.

The test contained an invalid IPv6 address. It should have ":" instead of "::" as separation.

BUG=webrtc:7565

Review-Url: https://codereview.webrtc.org/2868453002
Cr-Commit-Position: refs/heads/master@{#18035}
This commit is contained in:
ehmaldonado 2017-05-05 12:04:36 -07:00 committed by Commit bot
parent 299c8e0161
commit 121cabbaa6

View File

@ -694,7 +694,7 @@ static const char kSdpTcpInvalidCandidate[] =
// One candidate reference string with IPV6 address.
static const char kRawIPV6Candidate[] =
"candidate:a0+B/1 1 udp 2130706432 "
"abcd::abcd::abcd::abcd::abcd::abcd::abcd::abcd 1234 typ host generation 2";
"abcd:abcd:abcd:abcd:abcd:abcd:abcd:abcd 1234 typ host generation 2";
// One candidate reference string.
static const char kSdpOneCandidateWithUfragPwd[] =