Skip to content

Commit

Permalink
Fixed compile error introduced after merge
Browse files Browse the repository at this point in the history
  • Loading branch information
makdharma committed Sep 2, 2016
1 parent 57bdc96 commit 7c29c57
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/core/end2end/tests/simple_cacheable_request.c
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ static void test_cacheable_request_response_with_metadata_and_payload(
grpc_server_request_call(f.server, &s, &call_details,
&request_metadata_recv, f.cq, f.cq, tag(101));
GPR_ASSERT(GRPC_CALL_OK == error);
cq_expect_completion(cqv, tag(101), 1);
CQ_EXPECT_COMPLETION(cqv, tag(101), 1);
cq_verify(cqv);

memset(ops, 0, sizeof(ops));
Expand All @@ -203,7 +203,7 @@ static void test_cacheable_request_response_with_metadata_and_payload(
error = grpc_call_start_batch(s, ops, (size_t)(op - ops), tag(102), NULL);
GPR_ASSERT(GRPC_CALL_OK == error);

cq_expect_completion(cqv, tag(102), 1);
CQ_EXPECT_COMPLETION(cqv, tag(102), 1);
cq_verify(cqv);

memset(ops, 0, sizeof(ops));
Expand All @@ -228,8 +228,8 @@ static void test_cacheable_request_response_with_metadata_and_payload(
error = grpc_call_start_batch(s, ops, (size_t)(op - ops), tag(103), NULL);
GPR_ASSERT(GRPC_CALL_OK == error);

cq_expect_completion(cqv, tag(103), 1);
cq_expect_completion(cqv, tag(1), 1);
CQ_EXPECT_COMPLETION(cqv, tag(103), 1);
CQ_EXPECT_COMPLETION(cqv, tag(1), 1);
cq_verify(cqv);

GPR_ASSERT(status == GRPC_STATUS_OK);
Expand Down

0 comments on commit 7c29c57

Please sign in to comment.