| Index: content/test/data/media/peerconnection-call.html
|
| diff --git a/content/test/data/media/peerconnection-call.html b/content/test/data/media/peerconnection-call.html
|
| index 9782ef90091d3d5dbb42aad0fbea734626aad7c8..b285bc1a8e04ee3a74787a2a40cba73496bf087e 100644
|
| --- a/content/test/data/media/peerconnection-call.html
|
| +++ b/content/test/data/media/peerconnection-call.html
|
| @@ -494,7 +494,7 @@
|
|
|
| function iceCandidateIsLoopback(candidate) {
|
| return candidate.candidate.indexOf("127.0.0.1") > -1 ||
|
| - candidate.candidate.indexOf("::1") > -1;
|
| + candidate.candidate.indexOf(" ::1 ") > -1;
|
| }
|
|
|
| // Helper function to invoke |callback| when gathering is completed.
|
| @@ -550,7 +550,7 @@
|
| hasCandidate = true;
|
| assertEquals(iceCandidateIsLoopback(candidates[i]), false);
|
| }
|
| - assertTrue(hasCandidate, 'expect to see at least one non-loopback candidate');
|
| + assertTrue(hasCandidate, 'expect to see at least one candidate');
|
| reportTestSuccess();
|
| });
|
| }
|
|
|