aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrobot-piglet <robot-piglet@yandex-team.com>2024-08-26 15:47:45 +0300
committerrobot-piglet <robot-piglet@yandex-team.com>2024-08-26 15:57:07 +0300
commit53a12aa26f4cf057a8ea1c83089205349b59b450 (patch)
tree22b309f954e1f93e9e56a54cac8794eb5b958a04
parent51cb44db78d7488ccb9afb43a8db17099c2a023d (diff)
downloadydb-53a12aa26f4cf057a8ea1c83089205349b59b450.tar.gz
Intermediate changes
-rw-r--r--yt/yt/core/concurrency/unittests/scheduler_ut.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/yt/yt/core/concurrency/unittests/scheduler_ut.cpp b/yt/yt/core/concurrency/unittests/scheduler_ut.cpp
index 13c482bb6c..c13fd050c1 100644
--- a/yt/yt/core/concurrency/unittests/scheduler_ut.cpp
+++ b/yt/yt/core/concurrency/unittests/scheduler_ut.cpp
@@ -1388,7 +1388,7 @@ class TFairShareSchedulerTest
, public ::testing::WithParamInterface<std::tuple<int, int, int, TDuration>>
{ };
-bool ApproximatelyEqual(TDuration lhs, TDuration rhs, TDuration eps = TDuration::MilliSeconds(1))
+bool ApproximatelyEqual(TDuration lhs, TDuration rhs, TDuration eps = TDuration::MilliSeconds(10))
{
return (lhs < rhs ? rhs - lhs : lhs - rhs) < eps;
}