diff options
-rw-r--r-- | tests/sys_time_test.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/sys_time_test.cpp b/tests/sys_time_test.cpp index 16187ebeb..d033364b8 100644 --- a/tests/sys_time_test.cpp +++ b/tests/sys_time_test.cpp @@ -147,7 +147,7 @@ TEST(sys_time, gettimeofday) { tv2.tv_usec += 1000000; } - // Should be less than (a very generous, to try to avoid flakiness) 2ms (2000us). + // Should be less than (a very generous, to try to avoid flakiness) 5ms (5000us). ASSERT_EQ(0, tv2.tv_sec); - ASSERT_LT(tv2.tv_usec, 2000); + ASSERT_LT(tv2.tv_usec, 5000); } |