Skip to content

Commit 0a6b18f

Browse files
authored
fix (#1094)
1 parent 974c581 commit 0a6b18f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/unittests/PalTests.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ TEST_F(PalTests, SystemTime)
7070

7171
int64_t t1 = PAL::getUtcSystemTimeMs();
7272
EXPECT_THAT(t1, Gt(t0 + 360));
73-
EXPECT_THAT(t1, Lt(t0 + 500));
73+
EXPECT_THAT(t1, Lt(t0 + 550));
7474
}
7575

7676
TEST_F(PalTests, FormatUtcTimestampMsAsISO8601)
@@ -88,7 +88,7 @@ TEST_F(PalTests, MonotonicTime)
8888

8989
int64_t t1 = PAL::getMonotonicTimeMs();
9090
EXPECT_THAT(t1 - t0, Gt(780));
91-
EXPECT_THAT(t1 - t0, Lt(900));
91+
EXPECT_THAT(t1 - t0, Lt(950));
9292
}
9393

9494
TEST_F(PalTests, SemanticContextPopulation)

0 commit comments

Comments
 (0)