Skip to content

Commit ec0fb00

Browse files
committed
Reduce flakiness of macOS tests by increasing the stopwatch tolerance
1 parent f40ba97 commit ec0fb00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/stopwatch_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ TEST_CASE("Timer - test_accuracy")
4747
deltas.push_back(measure_delta());
4848
});
4949
auto mean_dev = fplus::mean_stddev<double>(deltas);
50-
REQUIRE_LT(mean_dev.first, 0.1);
50+
REQUIRE_LT(mean_dev.first, 0.15);
5151
REQUIRE_LT(mean_dev.second, 0.07);
5252
}
5353
#endif

0 commit comments

Comments
 (0)