Index: chrome/test/data/extensions/api_test/proxy/single/test.js |
diff --git a/chrome/test/data/extensions/api_test/proxy/single/test.js b/chrome/test/data/extensions/api_test/proxy/single/test.js |
index 9cc8502b24be2b886d91c759f59f0a881d893722..5f19b5e32ffca78a4f7de297e4e314a39b107f41 100644 |
--- a/chrome/test/data/extensions/api_test/proxy/single/test.js |
+++ b/chrome/test/data/extensions/api_test/proxy/single/test.js |
@@ -8,25 +8,12 @@ |
chrome.test.runTests([ |
function setSingleProxy() { |
var oneProxy = { |
- scheme: "http", |
host: "127.0.0.1", |
port: 100 |
}; |
- // Single proxy should override HTTP proxy. |
- var httpProxy = { |
- host: "8.8.8.8" |
- }; |
- |
- // Single proxy should not override SOCKS proxy. |
- var socksProxy = { |
- host: "9.9.9.9" |
- }; |
- |
var rules = { |
- singleProxy: oneProxy, |
- proxyForHttp: httpProxy, |
- socksProxy: socksProxy, |
+ singleProxy: oneProxy |
}; |
var config = { rules: rules, mode: "fixed_servers" }; |