Fix dragonbox integration

This commit is contained in:
Victor Zverovich
2020-09-28 18:10:46 -07:00
parent 3ae88147e2
commit 90ef46df0b
2 changed files with 6 additions and 0 deletions

View File

@@ -1238,10 +1238,12 @@ TEST(FormatterTest, FormatConvertibleToLongLong) {
}
TEST(FormatterTest, FormatFloat) {
EXPECT_EQ("0", format("{}", 0.0f));
EXPECT_EQ("392.500000", format("{0:f}", 392.5f));
}
TEST(FormatterTest, FormatDouble) {
EXPECT_EQ("0", format("{}", 0.0));
check_unknown_types(1.2, "eEfFgGaAnL%", "double");
EXPECT_EQ("0", format("{:}", 0.0));
EXPECT_EQ("0.000000", format("{:f}", 0.0));