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() { |