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

Unified Diff: content/test/data/media/peerconnection-call.html

Issue 2185533007: Fix spurious WebRTC test failure on certain IPv6 networks (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
});
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698