Index: chrome/browser/chromeos/login/wizard_controller_browsertest.cc |
diff --git a/chrome/browser/chromeos/login/wizard_controller_browsertest.cc b/chrome/browser/chromeos/login/wizard_controller_browsertest.cc |
index e38fdda215fb4552957af7c734979c726b87c8f5..87f3a734739fe37ec6fd755fe671642dd2e2daa8 100644 |
--- a/chrome/browser/chromeos/login/wizard_controller_browsertest.cc |
+++ b/chrome/browser/chromeos/login/wizard_controller_browsertest.cc |
@@ -214,7 +214,14 @@ IN_PROC_BROWSER_TEST_F(WizardControllerFlowTest, ControlFlowErrorNetwork) { |
EXPECT_EQ(controller()->GetLoginScreen(), controller()->current_screen()); |
} |
-IN_PROC_BROWSER_TEST_F(WizardControllerFlowTest, Accelerators) { |
+#if defined(OFFICIAL_BUILD) |
+// This test is supposed to fail on official test. |
+#define MAYBE_Accelerators DISABLED_Accelerators |
+#else |
+#define MAYBE_Accelerators Accelerators |
+#endif |
+ |
+IN_PROC_BROWSER_TEST_F(WizardControllerFlowTest, MAYBE_Accelerators) { |
EXPECT_EQ(controller()->GetNetworkScreen(), controller()->current_screen()); |
views::FocusManager* focus_manager = |