Fix FormatInt test.

This commit is contained in:
Victor Zverovich 2013-11-16 22:03:53 -08:00
parent 4a28216e68
commit a1bbd09548

View File

@ -943,7 +943,7 @@ TEST(FormatterTest, FormatShort) {
TEST(FormatterTest, FormatInt) {
EXPECT_THROW_MSG(Format("{0:v") << 42,
FormatError, "unmatched '{' in format");
CheckUnknownTypes(42, "doxXb", "integer");
CheckUnknownTypes(42, "bBdoxX", "integer");
}
TEST(FormatterTest, FormatBin) {