tests updated

This commit is contained in:
IRainman 2025-03-12 21:26:31 +03:00
parent 929e98182e
commit c08b7b12a6

View File

@ -1323,9 +1323,7 @@ TEST_CASE("double.general") {
TEST_CASE("double.decimal_point") { TEST_CASE("double.decimal_point") {
constexpr auto options = [] { constexpr auto options = [] {
fast_float::parse_options ret{}; return fast_float::parse_options(fast_float::chars_format::general, ',', 10);
ret.decimal_point = ',';
return ret;
}(); }();
// infinities // infinities
@ -1642,9 +1640,7 @@ TEST_CASE("float.general") {
TEST_CASE("float.decimal_point") { TEST_CASE("float.decimal_point") {
constexpr auto options = [] { constexpr auto options = [] {
fast_float::parse_options ret{}; return fast_float::parse_options(fast_float::chars_format::general, ',', 10);
ret.decimal_point = ',';
return ret;
}(); }();
// infinity // infinity