mirror of
https://github.com/fmtlib/fmt.git
synced 2024-12-27 08:40:14 +00:00
Simplify the WriteDoubleAtBufferBoundary test.
This commit is contained in:
parent
b6f383907b
commit
d052bdae02
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user