Fabric: Increasing threshold for MountingTelemetryTest

Summary:
We neede that to make the test less flaky.

Changelog: [Internal] Fabric-specific internal change.

Reviewed By: mdvacca

Differential Revision: D21261487

fbshipit-source-id: afec45e03be10ba071a5ab808ce13f95b5f475e3
This commit is contained in:
Valentin Shergin 2020-04-27 12:53:39 -07:00 коммит произвёл Facebook GitHub Bot
Родитель b871979a89
Коммит 26d3bcae72
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -27,7 +27,7 @@ void sleep(double durationInSeconds) {
}
TEST(MountingTelemetryTest, timepoints) {
auto threshold = int64_t{10};
auto threshold = int64_t{70};
auto timepointA = telemetryTimePointNow();
sleep<TelemetryClock>(0.1);
@ -39,7 +39,7 @@ TEST(MountingTelemetryTest, timepoints) {
}
TEST(MountingTelemetryTest, normalUseCase) {
auto threshold = int64_t{10};
auto threshold = int64_t{70};
auto telemetry = MountingTelemetry{};
telemetry.willCommit();