aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/end2end/fixtures/h2_fakesec.c
diff options
context:
space:
mode:
authorGravatar Sree Kuchibhotla <sreek@google.com>2017-03-03 14:27:44 -0800
committerGravatar Sree Kuchibhotla <sreek@google.com>2017-03-03 14:27:44 -0800
commit1dbd981cf8be17db0268e96c2e2a0647b7d53385 (patch)
tree1368cf122ea92f93e1b936f3825c6ae51a724fe0 /test/core/end2end/fixtures/h2_fakesec.c
parent9f71b177074ceb2607f331241dcceafa03431eaa (diff)
Prefix grpc_cq_polling_type enums with GRPC_CQ_
Diffstat (limited to 'test/core/end2end/fixtures/h2_fakesec.c')
-rw-r--r--test/core/end2end/fixtures/h2_fakesec.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/core/end2end/fixtures/h2_fakesec.c b/test/core/end2end/fixtures/h2_fakesec.c
index 0ccdef9767..59ae3f0cb3 100644
--- a/test/core/end2end/fixtures/h2_fakesec.c
+++ b/test/core/end2end/fixtures/h2_fakesec.c
@@ -60,9 +60,10 @@ static grpc_end2end_test_fixture chttp2_create_fixture_secure_fullstack(
gpr_join_host_port(&ffd->localaddr, "localhost", port);
f.fixture_data = ffd;
- f.cq = grpc_completion_queue_create(GRPC_CQ_NEXT, DEFAULT_POLLING, NULL);
+ f.cq =
+ grpc_completion_queue_create(GRPC_CQ_NEXT, GRPC_CQ_DEFAULT_POLLING, NULL);
f.shutdown_cq =
- grpc_completion_queue_create(GRPC_CQ_PLUCK, NON_POLLING, NULL);
+ grpc_completion_queue_create(GRPC_CQ_PLUCK, GRPC_CQ_NON_POLLING, NULL);
return f;
}