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

Unified Diff: chrome/test/data/extensions/platform_apps/isolation/test.js

Issue 16268017: GTTF: convert some tests in chrome to use EmbeddedTestServer patch nr 1 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 6 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
Index: chrome/test/data/extensions/platform_apps/isolation/test.js
diff --git a/chrome/test/data/extensions/platform_apps/isolation/test.js b/chrome/test/data/extensions/platform_apps/isolation/test.js
index 6788d0bce8093369762b5519b0fc42439d916c97..37079ddab006042ca06208bba6b2c3dc9fd296bb 100644
--- a/chrome/test/data/extensions/platform_apps/isolation/test.js
+++ b/chrome/test/data/extensions/platform_apps/isolation/test.js
@@ -11,9 +11,8 @@ chrome.test.getConfig(function(config) {
'http://localhost:' + config.testServer.port + '/echoheader?Cookie',
true);
xhr.onload = function() {
- // Cookies should not have been passed in the request, so the echo of
- // their header should be the Pythonic "None".
- chrome.test.assertEq('None', xhr.responseText);
+ // Cookies should not have been passed in the request.
+ chrome.test.assertEq('', xhr.responseText);
chrome.test.succeed();
};
xhr.onerror = function() {

Powered by Google App Engine
This is Rietveld 408576698