Skip to content

Commit

Permalink
tune timer to fix CI test runs
Browse files Browse the repository at this point in the history
  • Loading branch information
itzurabhi committed Jun 18, 2024
1 parent 6a2bbd8 commit 824a0f8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ TEST_CASE("Timer handling")
timer.timeout.connect([&]() {
const auto endTime = std::chrono::steady_clock::now();
REQUIRE(endTime - time > 50ms);
REQUIRE(endTime - time < 150ms);
REQUIRE(endTime - time < 200ms);
time = endTime;
timeout++;
});
Expand Down

0 comments on commit 824a0f8

Please sign in to comment.