test: change 10e8 to 1e9

It is clearer and used everywhere else.
This commit is contained in:
Hiroaki Nakamura 2012-10-16 06:08:14 +09:00 committed by Ben Noordhuis
parent fd136da04a
commit 36b1e1a57c

View File

@ -134,7 +134,7 @@ BENCHMARK_IMPL(tcp_write_batch) {
printf("%ld write requests in %.2fs.\n",
(long)NUM_WRITE_REQS,
(stop - start) / 10e8);
(stop - start) / 1e9);
return 0;
}