Fix implicit conversion in unit test

This commit is contained in:
Dennis 2024-05-23 12:47:17 +02:00
parent 300af17108
commit a673323d95
No known key found for this signature in database
GPG Key ID: 6937EAEA33A3FA5D

View File

@ -87,7 +87,7 @@ BOOST_AUTO_TEST_CASE(test_json_issue_6531)
BOOST_CHECK_EQUAL(output, "0.1234567892"); BOOST_CHECK_EQUAL(output, "0.1234567892");
output.clear(); output.clear();
renderer(123456789123456789); renderer(123456789123456789.);
BOOST_CHECK_EQUAL(output, "1.234567891e+17"); BOOST_CHECK_EQUAL(output, "1.234567891e+17");
} }