Skip to content

Commit

Permalink
Trying to fix failing test on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
jatinchowdhury18 committed Dec 8, 2023
1 parent 449a1c5 commit 476dd6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/src/asinh_approx_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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<TestType> (-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<TestType> (-10.0f, 10.0f, 1.0e-1f);
#endif
const auto y_exact = test_helpers::compute_all<TestType> (all_floats, [] (auto x)
{ return std::asinh (x); });
Expand Down

0 comments on commit 476dd6d

Please sign in to comment.