From 2769a7dc3724235cedc56dcc77458fd2d13c385b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Sawicz?= Date: Fri, 7 Mar 2025 10:19:12 +0100 Subject: [PATCH] tests: increase token expiration time tolerance Fixes: #3804 --- tests/unit-tests/shell/test_token_authority.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit-tests/shell/test_token_authority.cpp b/tests/unit-tests/shell/test_token_authority.cpp index 84e2fd8aa9..402912ebb3 100644 --- a/tests/unit-tests/shell/test_token_authority.cpp +++ b/tests/unit-tests/shell/test_token_authority.cpp @@ -69,7 +69,7 @@ TEST_F(TestTokenAuthority, tokens_are_revoked_in_time) using namespace std::chrono; auto constexpr revocation_time = milliseconds(3000); - auto constexpr epsilon = milliseconds(10); + auto constexpr epsilon = milliseconds(50); bool revoked = false; auto const issuance_time = clock->now();