| Index: chrome/browser/ui/toolbar/wrench_menu_model_unittest.cc
|
| diff --git a/chrome/browser/ui/toolbar/wrench_menu_model_unittest.cc b/chrome/browser/ui/toolbar/wrench_menu_model_unittest.cc
|
| index c3472c1ed08c50b2545134f7469d90c4fe0fa7a5..30e3821437d7bfa33f3999cfc6541b6c11f32fd9 100644
|
| --- a/chrome/browser/ui/toolbar/wrench_menu_model_unittest.cc
|
| +++ b/chrome/browser/ui/toolbar/wrench_menu_model_unittest.cc
|
| @@ -132,8 +132,9 @@ TEST_F(WrenchMenuModelTest, Basics) {
|
| // Execute a couple of the items and make sure it gets back to our delegate.
|
| // We can't use CountEnabledExecutable() here because the encoding menu's
|
| // delegate is internal, it doesn't use the one we pass in.
|
| - model.ActivatedAt(0);
|
| - EXPECT_TRUE(model.IsEnabledAt(0));
|
| + // Note: The new menu has a spacing separator at the first slot.
|
| + model.ActivatedAt(1);
|
| + EXPECT_TRUE(model.IsEnabledAt(1));
|
| // Make sure to use the index that is not separator in all configurations.
|
| model.ActivatedAt(2);
|
| EXPECT_TRUE(model.IsEnabledAt(2));
|
|
|