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

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

Issue 1641543002: MD History: Refactored design for displaying history information (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@second_patch
Patch Set: concat -> push Created 4 years, 10 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/md_history_browsertest.js
diff --git a/chrome/test/data/webui/md_history/md_history_browsertest.js b/chrome/test/data/webui/md_history/md_history_browsertest.js
index 18c3392c2046b9a47f305033d3d3147e83c4b4f9..99f4863347ad8e17d2f676e8c601e68b400179b5 100644
--- a/chrome/test/data/webui/md_history/md_history_browsertest.js
+++ b/chrome/test/data/webui/md_history/md_history_browsertest.js
@@ -22,20 +22,20 @@ MaterialHistoryBrowserTest.prototype = {
extraLibraries: PolymerTest.getLibraries(ROOT_PATH).concat([
'test_util.js',
- 'history_card_manager_test.js',
- 'history_card_test.js',
+ 'history_list_test.js',
+ 'history_item_test.js',
'history_overflow_menu_test.js',
'history_toolbar_test.js'
])
};
-TEST_F('MaterialHistoryBrowserTest', 'HistoryCardTest', function() {
- md_history.history_card_test.registerTests();
+TEST_F('MaterialHistoryBrowserTest', 'HistoryItemTest', function() {
+ md_history.history_item_test.registerTests();
mocha.run();
});
-TEST_F('MaterialHistoryBrowserTest', 'HistoryCardManagerTest', function() {
- md_history.history_card_manager_test.registerTests();
+TEST_F('MaterialHistoryBrowserTest', 'HistoryListTest', function() {
+ md_history.history_list_test.registerTests();
mocha.run();
});

Powered by Google App Engine
This is Rietveld 408576698