aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/qps/sync_streaming_ping_pong_test.cc
diff options
context:
space:
mode:
authorGravatar David Garcia Quintas <dgq@google.com>2015-05-20 17:27:23 -0700
committerGravatar David Garcia Quintas <dgq@google.com>2015-05-20 17:27:23 -0700
commit08116501cbe91dbf7b6a09ded111a4395c81a738 (patch)
tree141ff855cc7145f1a25e8b395f2c4e761fec8325 /test/cpp/qps/sync_streaming_ping_pong_test.cc
parent6ba29ba3fbfd2870ce57413f560f5470dfad2a7c (diff)
Fix to work around the fact that Histogram isn't copyable.
Diffstat (limited to 'test/cpp/qps/sync_streaming_ping_pong_test.cc')
-rw-r--r--test/cpp/qps/sync_streaming_ping_pong_test.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/cpp/qps/sync_streaming_ping_pong_test.cc b/test/cpp/qps/sync_streaming_ping_pong_test.cc
index 48c7ff63e0..218306846b 100644
--- a/test/cpp/qps/sync_streaming_ping_pong_test.cc
+++ b/test/cpp/qps/sync_streaming_ping_pong_test.cc
@@ -63,8 +63,8 @@ static void RunSynchronousStreamingPingPong() {
const auto result =
RunScenario(client_config, 1, server_config, 1, WARMUP, BENCHMARK, -2);
- ReportQPS(result);
- ReportLatency(result);
+ ReportQPS(*result);
+ ReportLatency(*result);
}
} // namespace testing