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

Unified Diff: chrome/test/data/extensions/api_test/cloud_print_private/enable_chrome_connector/cloud_print_success_tests.js

Issue 1898503002: Cleanup LocalDiscoveryUIHandler. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nit Created 4 years, 8 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/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 b04dbb8857d84ecfe2170b6b310d3e2f94050cfa..934cac5fd376dd1ef556cb9fd750af7c56258c0f 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
@@ -25,22 +25,22 @@ var tests = [
function getHostName() {
chrome.cloudPrintPrivate.getHostName(
chrome.test.callbackPass(function(result) {
- chrome.test.assertNoLastError();
- chrome.test.assertEq("TestHostName", result);
+ chrome.test.assertNoLastError();
+ chrome.test.assertEq("TestHostName", result);
}));
},
function getPrinters() {
chrome.cloudPrintPrivate.getPrinters(
chrome.test.callbackPass(function(result) {
- chrome.test.assertNoLastError();
- chrome.test.assertEq(result, ['printer1', 'printer2']);
- }));
+ chrome.test.assertNoLastError();
+ chrome.test.assertEq(result, ['printer1', 'printer2']);
+ }));
},
function getClientId() {
chrome.cloudPrintPrivate.getClientId(
chrome.test.callbackPass(function(result) {
- chrome.test.assertNoLastError();
- chrome.test.assertEq("TestAPIClient", result);
+ chrome.test.assertNoLastError();
+ chrome.test.assertEq("TestAPIClient", result);
}));
}
];
« no previous file with comments | « chrome/test/data/extensions/api_test/cloud_print_private/enable_chrome_connector/cloud_print_incognito_failure_tests.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698