aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/qps/qps_interarrival_test.cc
diff options
context:
space:
mode:
authorGravatar Vijay Pai <vpai@google.com>2015-04-23 13:51:18 -0700
committerGravatar Vijay Pai <vpai@google.com>2015-04-23 13:53:36 -0700
commite23aba48841046e4a93490ab14ef675b8992e41a (patch)
tree6d9839be659cffd6ff236331e0330c30d0124ea0 /test/cpp/qps/qps_interarrival_test.cc
parent9cf0b3b84d240b998ebafe8dfddc4f46e44dfa76 (diff)
Fix definition of InterarrivalTimer to enable late initialization
and use nanoseconds
Diffstat (limited to 'test/cpp/qps/qps_interarrival_test.cc')
-rw-r--r--test/cpp/qps/qps_interarrival_test.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/cpp/qps/qps_interarrival_test.cc b/test/cpp/qps/qps_interarrival_test.cc
index e5af998921..14af4c6506 100644
--- a/test/cpp/qps/qps_interarrival_test.cc
+++ b/test/cpp/qps/qps_interarrival_test.cc
@@ -69,9 +69,9 @@ int main(int argc, char **argv) {
RunTest(InterarrivalTimer(ExpDist(10.0), 5), std::string("Exponential(10)"));
RunTest(InterarrivalTimer(DetDist(5.0), 5), std::string("Det(5)"));
RunTest(InterarrivalTimer(UniformDist(0.0,10.0), 5),
- std::string("Uniform(1,10)"));
+ std::string("Uniform(1,10)"));
RunTest(InterarrivalTimer(ParetoDist(1.0,1.0), 5),
- std::string("Pareto(1,1)"));
-
+ std::string("Pareto(1,1)"));
+
return 0;
}