Update extraction tests, update coverage-ci, update ssp.hpp

This commit is contained in:
ado
2023-08-08 12:43:56 +02:00
parent 848689451c
commit 32cbfe1d17
5 changed files with 5 additions and 9 deletions

View File

@@ -31,8 +31,8 @@ TEST_CASE("extract test functions for numbers with invalid inputs without fast "
CHECK_INVALID_CONVERSION("xxx1", float);
// number too big
CHECK_INVALID_CONVERSION((std::string{20, '1'} + "." +
std::string{20, '2'}),
CHECK_INVALID_CONVERSION((std::string{40, '1'} + "." +
std::string{40, '2'}),
double);
}