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

Unified Diff: chrome/test/data/extensions/api_test/feedback_private/basic/test.js

Issue 516083002: Fix and re-enable the Feedback API Test. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 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
« no previous file with comments | « chrome/browser/extensions/api/feedback_private/feedback_private_apitest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/extensions/api_test/feedback_private/basic/test.js
diff --git a/chrome/test/data/extensions/api_test/feedback_private/basic/test.js b/chrome/test/data/extensions/api_test/feedback_private/basic/test.js
index 8f69b61e7692b0e5b03650e502a101a2f5349499..5512b7eb05e7fa69c8e776d6fc367dc0e6428476 100644
--- a/chrome/test/data/extensions/api_test/feedback_private/basic/test.js
+++ b/chrome/test/data/extensions/api_test/feedback_private/basic/test.js
@@ -21,8 +21,10 @@ chrome.test.runTests([
}));
},
function sendFeedbackTest() {
- var feedbackInfo = {};
- feedbackInfo.description = 'This is a test description';
+ var feedbackInfo = {
+ description: 'This is a test description',
+ sendHistograms: false
+ };
chrome.feedbackPrivate.sendFeedback(
feedbackInfo, chrome.test.callbackPass(function(response) {
chrome.test.assertEq(response, 'success');
« no previous file with comments | « chrome/browser/extensions/api/feedback_private/feedback_private_apitest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698