diff --git a/format_test.cc b/format_test.cc index e202edb7..262c73ea 100644 --- a/format_test.cc +++ b/format_test.cc @@ -952,8 +952,6 @@ TEST(FormatterTest, FormatBin) { EXPECT_EQ("10010000101010111100110111101111", str(Format("{0:b}") << 0x90ABCDEF)); EXPECT_EQ("11111111111111111111111111111111", str(Format("{0:b}") << std::numeric_limits::max())); - EXPECT_EQ("1111111111111111111111111111111111111111111111111111111111111111", - str(Format("{0:b}") << std::numeric_limits::max())); } TEST(FormatterTest, FormatDec) {