| Index: chrome/test/data/webui/md_bookmarks/item_test.js
|
| diff --git a/chrome/test/data/webui/md_bookmarks/item_test.js b/chrome/test/data/webui/md_bookmarks/item_test.js
|
| index caddf52419b1b63dd8ea058b20c0638b927b9c66..e850d6556c2f2a9822ab235bad1141ab6b0ccd5c 100644
|
| --- a/chrome/test/data/webui/md_bookmarks/item_test.js
|
| +++ b/chrome/test/data/webui/md_bookmarks/item_test.js
|
| @@ -45,7 +45,11 @@ suite('<bookmarks-item>', function() {
|
| test('pressing the menu button selects the item', function() {
|
| MockInteractions.tap(item.$$('.more-vert-button'));
|
| assertDeepEquals(
|
| - bookmarks.actions.selectItem('2', false, false, store.data),
|
| + bookmarks.actions.selectItem('2', store.data, {
|
| + clear: true,
|
| + range: false,
|
| + toggle: false,
|
| + }),
|
| store.lastAction);
|
| });
|
|
|
| @@ -57,7 +61,11 @@ suite('<bookmarks-item>', function() {
|
| item.isSelectedItem_ = false;
|
| item.dispatchEvent(new MouseEvent('contextmenu'));
|
| assertDeepEquals(
|
| - bookmarks.actions.selectItem('2', false, false, store.data),
|
| + bookmarks.actions.selectItem('2', store.data, {
|
| + clear: true,
|
| + range: false,
|
| + toggle: false,
|
| + }),
|
| store.lastAction);
|
| });
|
|
|
|
|