diff options
Diffstat (limited to 'base/watchdog_unittest.cc')
-rw-r--r-- | base/watchdog_unittest.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/watchdog_unittest.cc b/base/watchdog_unittest.cc index 3ecfa7d..f16c564 100644 --- a/base/watchdog_unittest.cc +++ b/base/watchdog_unittest.cc @@ -114,7 +114,7 @@ TEST_F(WatchdogTest, DisarmTest) { // ...but even after disarming, we can still use the alarm... // Set a time greater than the timeout into the past. - watchdog.ArmSomeTimeDeltaAgo(TimeDelta::FromSeconds(2)); + watchdog.ArmSomeTimeDeltaAgo(TimeDelta::FromSeconds(10)); // It should almost instantly go off, but certainly in less than 5 minutes. SPIN_FOR_TIMEDELTA_OR_UNTIL_TRUE(TimeDelta::FromMinutes(5), watchdog.alarm_counter() > 0); |