| Index: ash/wm/user_activity_detector_unittest.cc
|
| diff --git a/ash/wm/user_activity_detector_unittest.cc b/ash/wm/user_activity_detector_unittest.cc
|
| index 2aa0ef5f69453cbd46ebbd4443b53b395f906577..1e3105bdf26af42c29daaf4a568ba2db1c5374cd 100644
|
| --- a/ash/wm/user_activity_detector_unittest.cc
|
| +++ b/ash/wm/user_activity_detector_unittest.cc
|
| @@ -117,7 +117,8 @@ TEST_F(UserActivityDetectorTest, Basic) {
|
| ui::TouchEvent touch_event(
|
| ui::ET_TOUCH_PRESSED, gfx::Point(), 0, base::TimeDelta());
|
| SetEventTarget(window.get(), &touch_event);
|
| - EXPECT_EQ(ui::ER_UNHANDLED, detector_->OnTouchEvent(&touch_event));
|
| + detector_->OnTouchEvent(&touch_event);
|
| + EXPECT_FALSE(touch_event.handled());
|
| EXPECT_EQ(1, observer_->num_invocations());
|
| observer_->reset_stats();
|
|
|
|
|