From 476dd6d0a9cd36c1a3dcabb3a58fed727d126094 Mon Sep 17 00:00:00 2001 From: jatin Date: Thu, 7 Dec 2023 20:35:16 -0800 Subject: [PATCH] Trying to fix failing test on Windows --- test/src/asinh_approx_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/src/asinh_approx_test.cpp b/test/src/asinh_approx_test.cpp index 53320c4..7a52464 100644 --- a/test/src/asinh_approx_test.cpp +++ b/test/src/asinh_approx_test.cpp @@ -22,7 +22,7 @@ TEMPLATE_TEST_CASE ("Asinh Approx Test", "", float, double) #if ! defined(WIN32) const auto all_floats = test_helpers::all_32_bit_floats (-10.0f, 10.0f, 1.0e-2f); #else - const auto all_floats = test_helpers::all_32_bit_floats (-10.0f, 10.0f, 1.0e-1f); + const auto all_floats = test_helpers::all_32_bit_floats (-10.0f, 10.0f, 1.0e-1f); #endif const auto y_exact = test_helpers::compute_all (all_floats, [] (auto x) { return std::asinh (x); });