Simplify the WriteDoubleAtBufferBoundary test.

This commit is contained in:
Victor Zverovich 2013-12-27 07:46:02 -08:00
parent b6f383907b
commit d052bdae02

View File

@ -302,11 +302,8 @@ TEST(WriterTest, WriteDouble) {
TEST(WriterTest, WriteDoubleAtBufferBoundary) {
fmt::Writer writer;
int i = 0;
while (i++ < 130) {
std::cout << i << std::endl;
writer << 1.01;
}
for (int i = 0; i < 100; ++i)
writer << 1.23456789;
}
TEST(WriterTest, WriteChar) {