aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/end2end/tests/hpack_size.c
diff options
context:
space:
mode:
authorGravatar Mark D. Roth <roth@google.com>2016-08-24 13:49:22 -0700
committerGravatar Mark D. Roth <roth@google.com>2016-08-24 13:49:22 -0700
commit7187ab9866f95181212cdb8b80fcbe0a36b01765 (patch)
tree62ab4af66266d7b1a3a8f5bfe7d8160e58841de2 /test/core/end2end/tests/hpack_size.c
parent37c1c8fa58525e8870dd89d61b5f8a73957c886c (diff)
Change cq_verifier to report file and line number for expectations.
Diffstat (limited to 'test/core/end2end/tests/hpack_size.c')
-rw-r--r--test/core/end2end/tests/hpack_size.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/core/end2end/tests/hpack_size.c b/test/core/end2end/tests/hpack_size.c
index 7ff0461f5f..fb00ae4eaa 100644
--- a/test/core/end2end/tests/hpack_size.c
+++ b/test/core/end2end/tests/hpack_size.c
@@ -310,7 +310,7 @@ static void simple_request_body(grpc_end2end_test_fixture f, size_t index) {
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));
@@ -335,8 +335,8 @@ static void simple_request_body(grpc_end2end_test_fixture f, size_t index) {
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(1), 1);
+ CQ_EXPECT_COMPLETION(cqv, tag(102), 1);
+ CQ_EXPECT_COMPLETION(cqv, tag(1), 1);
cq_verify(cqv);
GPR_ASSERT(status == GRPC_STATUS_UNIMPLEMENTED);