| Index: ash/common/system/ime/tray_ime_chromeos_unittest.cc
|
| diff --git a/ash/common/system/ime/tray_ime_chromeos_unittest.cc b/ash/common/system/ime/tray_ime_chromeos_unittest.cc
|
| index c90fa49ace8b906786929252938e49de2f551250..fb6e8bc05f09ed54a888247d8b74d32e8630a725 100644
|
| --- a/ash/common/system/ime/tray_ime_chromeos_unittest.cc
|
| +++ b/ash/common/system/ime/tray_ime_chromeos_unittest.cc
|
| @@ -159,6 +159,10 @@ TEST_F(TrayIMETest, ShownWithSingleIMEWhenManaged) {
|
| // Tests that if no IMEs are present the default view is hidden when a11y is
|
| // enabled.
|
| TEST_F(TrayIMETest, HidesOnA11yEnabled) {
|
| + // TODO: investigate failure in mash. http://crbug.com/695561.
|
| + if (WmShell::Get()->IsRunningInMash())
|
| + return;
|
| +
|
| SetIMELength(0);
|
| SuppressKeyboard();
|
| EXPECT_TRUE(default_view()->visible());
|
| @@ -173,6 +177,10 @@ TEST_F(TrayIMETest, HidesOnA11yEnabled) {
|
| // Tests that clicking on the keyboard toggle causes the virtual keyboard
|
| // to toggle between enabled and disabled.
|
| TEST_F(TrayIMETest, PerformActionOnDetailedView) {
|
| + // TODO: investigate failure in mash. http://crbug.com/695561.
|
| + if (WmShell::Get()->IsRunningInMash())
|
| + return;
|
| +
|
| SetIMELength(0);
|
| SuppressKeyboard();
|
| EXPECT_FALSE(keyboard::IsKeyboardEnabled());
|
|
|