| 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 a620f4e9201831c360a38a9c4d507ad2cac2540e..f66ca8b2b95b4e95a306c666c7d6b90147bc8275 100644
|
| --- a/chrome/test/data/webui/md_history/history_item_test.js
|
| +++ b/chrome/test/data/webui/md_history/history_item_test.js
|
| @@ -66,13 +66,13 @@ cr.define('md_history.history_item_test', function() {
|
| var items =
|
| Polymer.dom(element.root).querySelectorAll('history-item');
|
|
|
| - element.removeDeletedHistory_([element.historyData[3]]);
|
| - assertEquals(5, element.historyData.length);
|
| + element.removeDeletedHistory_([element.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.removeDeletedHistory_([element.historyData_[3]]);
|
|
|
| // Checks time gap separator is removed.
|
| assertFalse(items[2].hasTimeGap);
|
| @@ -81,7 +81,7 @@ cr.define('md_history.history_item_test', function() {
|
| });
|
|
|
| teardown(function() {
|
| - element.historyData = [];
|
| + element.historyData_ = [];
|
| element.searchedTerm = '';
|
| });
|
| });
|
|
|