aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp
diff options
context:
space:
mode:
authorGravatar Sree Kuchibhotla <sreek@google.com>2017-04-07 13:55:46 -0700
committerGravatar Sree Kuchibhotla <sreek@google.com>2017-04-07 13:55:46 -0700
commitdc0b8a60d3af630518ed1a27699430a2e9364a70 (patch)
tree878062d25b5c05427f740ad319ef7ada13e809fd /test/cpp
parent7b9f97bfb88359d070f66c7f2cb132622046af5b (diff)
change cq_create to cq_create_for_next
Diffstat (limited to 'test/cpp')
-rw-r--r--test/cpp/microbenchmarks/bm_cq_multiple_threads.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cpp/microbenchmarks/bm_cq_multiple_threads.cc b/test/cpp/microbenchmarks/bm_cq_multiple_threads.cc
index 967c226ac7..33b77368ad 100644
--- a/test/cpp/microbenchmarks/bm_cq_multiple_threads.cc
+++ b/test/cpp/microbenchmarks/bm_cq_multiple_threads.cc
@@ -106,7 +106,7 @@ static void setup() {
init_engine_vtable();
grpc_set_event_engine_test_only(&g_vtable);
- g_cq = grpc_completion_queue_create(NULL);
+ g_cq = grpc_completion_queue_create_for_next(NULL);
}
static void BM_Cq_Throughput(benchmark::State& state) {