| Index: chrome/test/data/webui/md_history/history_item_test.js
|
| diff --git a/chrome/test/data/webui/md_history/history_item_test.js b/chrome/test/data/webui/md_history/history_item_test.js
|
| index 94744a0d609bee67d0b00d58f0cfc8ffeb68196e..5d9bb83f90f1b6ccd1686deb25a0600ea028d7f3 100644
|
| --- a/chrome/test/data/webui/md_history/history_item_test.js
|
| +++ b/chrome/test/data/webui/md_history/history_item_test.js
|
| @@ -63,13 +63,13 @@ cr.define('md_history.history_item_test', function() {
|
| var items =
|
| Polymer.dom(element.root).querySelectorAll('history-item');
|
|
|
| - element.removeDeletedHistory_([element.historyData_[3]]);
|
| + element.removeItemsByPath(['historyData_.3']);
|
| assertEquals(5, element.historyData_.length);
|
|
|
| // Checks that a new time gap separator has been inserted.
|
| assertTrue(items[2].hasTimeGap);
|
|
|
| - element.removeDeletedHistory_([element.historyData_[3]]);
|
| + element.removeItemsByPath(['historyData_.3']);
|
|
|
| // Checks time gap separator is removed.
|
| assertFalse(items[2].hasTimeGap);
|
|
|