From a1bbd0954890d3ec3fea5f11e21f5301442a8e47 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Sat, 16 Nov 2013 22:03:53 -0800 Subject: [PATCH] Fix FormatInt test. --- format_test.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/format_test.cc b/format_test.cc index dea850df..98892ecc 100644 --- a/format_test.cc +++ b/format_test.cc @@ -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) {