Skip to content

Commit 71ec0a1

Browse files
authored
Relax timing restrictions on WakeUpTimersAreSingletons. (#16446)
We don’t run this test on bots because we don’t want timeouts on any tests. This only runs locally as a sanity check for timers.
1 parent f3ce90e commit 71ec0a1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

fml/message_loop_unittests.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -331,8 +331,8 @@ TEST(MessageLoop, TIME_SENSITIVE(WakeUpTimersAreSingletons)) {
331331
[&]() {
332332
auto delta = fml::TimePoint::Now() - begin;
333333
auto ms = delta.ToMillisecondsF();
334-
ASSERT_GE(ms, 18);
335-
ASSERT_LE(ms, 22);
334+
ASSERT_GE(ms, 10);
335+
ASSERT_LE(ms, 25);
336336

337337
loop_impl->Terminate();
338338
},

0 commit comments

Comments
 (0)