This commit is contained in:
Victor Zverovich
2014-08-18 07:03:22 -07:00
parent 186734cf8b
commit 39ac84f01e

View File

@ -368,8 +368,7 @@ TEST(PrintfTest, Length) {
long double max = std::numeric_limits<long double>::max(); long double max = std::numeric_limits<long double>::max();
EXPECT_PRINTF(fmt::format("{}", max), "%g", max); EXPECT_PRINTF(fmt::format("{}", max), "%g", max);
EXPECT_PRINTF(fmt::format("{}", max), "%Lg", max); EXPECT_PRINTF(fmt::format("{}", max), "%Lg", max);
EXPECT_GT(sizeof(fmt::LongLong), sizeof(int)); // TODO: test char, string
// TODO: test 'L'
} }
// TODO: test type specifier // TODO: test type specifier