Skip to content

Commit 89533a4

Browse files
committed
MAINT: Add more wiggle room to tolerance
1 parent 0960442 commit 89533a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/testing_utils.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ Catch::Generators::GeneratorWrapper<std::tuple<T1, T2, T3>> xsf_test_cases(
131131
template <typename T>
132132
T adjust_tolerance(T tol) {
133133
// Add some wiggle room to tolerance from table.
134-
return 2 * std::max(std::numeric_limits<T>::epsilon(), tol);
134+
return 4 * std::max(std::numeric_limits<T>::epsilon(), tol);
135135
}
136136

137137

0 commit comments

Comments
 (0)