From caf85ec8c08b3558ffc15a0333c8a26fc2a959ee Mon Sep 17 00:00:00 2001 From: Viktor Govako Date: Tue, 7 Jun 2022 09:37:37 +0300 Subject: [PATCH] [base][test] Increased threshold. Signed-off-by: Viktor Govako --- base/base_tests/small_set_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/base_tests/small_set_test.cpp b/base/base_tests/small_set_test.cpp index 9da84bbcb4..f9f863991a 100644 --- a/base/base_tests/small_set_test.cpp +++ b/base/base_tests/small_set_test.cpp @@ -137,7 +137,7 @@ UNIT_TEST(SmallMap_Benchmark1) TEST_EQUAL(sum1, sum2, ()); // At this moment, we have rare t2 > t1 on Linux CI. - TEST(BenchmarkTimeLessOrNear(t2, t1, 0.1), (t2, t1)); + TEST(BenchmarkTimeLessOrNear(t2, t1, 0.3), (t2, t1)); LOG(LINFO, ("unordered_map time =", t1, "SmallMap time =", t2)); }