From 03ab064fb7ddaddd3068757f0bff6457459cb726 Mon Sep 17 00:00:00 2001 From: Craig Tiller Date: Wed, 2 Sep 2015 12:22:49 -0700 Subject: [PATCH] Fix completion_queue_test --- test/core/surface/completion_queue_test.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/core/surface/completion_queue_test.c b/test/core/surface/completion_queue_test.c index a5298a25e06..c382b2a5aa3 100644 --- a/test/core/surface/completion_queue_test.c +++ b/test/core/surface/completion_queue_test.c @@ -325,7 +325,7 @@ static void test_threading(int producers, int consumers) { int main(int argc, char **argv) { grpc_test_init(argc, argv); - grpc_iomgr_init(); + grpc_init(); test_no_op(); test_wait_empty(); test_shutdown_then_next_polling(); @@ -336,6 +336,6 @@ int main(int argc, char **argv) { test_threading(1, 10); test_threading(10, 1); test_threading(10, 10); - grpc_iomgr_shutdown(); + grpc_shutdown(); return 0; }