| Index: chrome/test/data/extensions/api_test/cloud_print_private/enable_chrome_connector/cloud_print_success_tests.js
|
| diff --git a/chrome/test/data/extensions/api_test/cloud_print_private/enable_chrome_connector/cloud_print_success_tests.js b/chrome/test/data/extensions/api_test/cloud_print_private/enable_chrome_connector/cloud_print_success_tests.js
|
| index 7cc5f9bddc0fcf041c10513c163553dd34c3fd70..b04dbb8857d84ecfe2170b6b310d3e2f94050cfa 100644
|
| --- a/chrome/test/data/extensions/api_test/cloud_print_private/enable_chrome_connector/cloud_print_success_tests.js
|
| +++ b/chrome/test/data/extensions/api_test/cloud_print_private/enable_chrome_connector/cloud_print_success_tests.js
|
| @@ -8,7 +8,18 @@ var tests = [
|
| var robotEmail = 'foorobot@googleusercontent.com';
|
| var credentials = '1/23546efa54';
|
| chrome.cloudPrintPrivate.setupConnector(
|
| - userEmail, robotEmail, credentials, true, ['printer1', 'printer2']);
|
| + userEmail, robotEmail, credentials, {
|
| + "connectNewPrinters": true,
|
| + "printers": [
|
| + {
|
| + "name" : "printer1",
|
| + "connect" : false
|
| + }, {
|
| + "name" : "printer2",
|
| + "connect" : true
|
| + }
|
| + ]
|
| + });
|
| chrome.test.succeed();
|
| },
|
| function getHostName() {
|
|
|