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

Unified Diff: chrome/test/data/webui/md_history/history_card_manager_test.js

Issue 1643693003: MD History: Implement search functionality. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@patch_to_be_uploaded
Patch Set: Fix commenting. Created 4 years, 11 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/webui/md_history/history_card_manager_test.js
diff --git a/chrome/test/data/webui/md_history/history_card_manager_test.js b/chrome/test/data/webui/md_history/history_card_manager_test.js
index 6e511db02cf9cefe060bc1ddab1d7ad87a2a1da0..3b350a6a7e9fc62dac808c2858a7932d9ee3fb32 100644
--- a/chrome/test/data/webui/md_history/history_card_manager_test.js
+++ b/chrome/test/data/webui/md_history/history_card_manager_test.js
@@ -51,7 +51,7 @@ cr.define('md_history.history_card_manager_test', function() {
});
setup(function() {
- element.addNewResults(TEST_HISTORY_RESULTS);
+ element.addNewResults(TEST_HISTORY_RESULTS, '');
});
test('splitting items by day', function() {
@@ -106,7 +106,7 @@ cr.define('md_history.history_card_manager_test', function() {
});
test('updating history results', function() {
- element.addNewResults(ADDITIONAL_RESULTS);
+ element.addNewResults(ADDITIONAL_RESULTS, '');
assertEquals(5, element.historyDataByDay_.length);

Powered by Google App Engine
This is Rietveld 408576698