aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/surface
diff options
context:
space:
mode:
authorGravatar Craig Tiller <craig.tiller@gmail.com>2015-01-20 22:43:32 -0800
committerGravatar Craig Tiller <craig.tiller@gmail.com>2015-01-20 22:43:32 -0800
commit8379a06f8dddbe99b9f99163111255794eff07b5 (patch)
tree4273119573ade442f3cf43671aab8e24b28ee7a1 /test/core/surface
parent18d4a86982178ff7bbec345a9772184c713cda35 (diff)
parent5d19e96f63ebeae7572e2495cfe9f628f74dffc2 (diff)
Merge branch 'new_invoke_api' of github.com:google/grpc into update-api
Conflicts: src/cpp/client/channel.cc src/cpp/stream/stream_context.cc src/cpp/stream/stream_context.h src/php/ext/grpc/call.c test/core/end2end/tests/max_concurrent_streams.c
Diffstat (limited to 'test/core/surface')
-rw-r--r--test/core/surface/lame_client_test.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/test/core/surface/lame_client_test.c b/test/core/surface/lame_client_test.c
index 0520a39ea2..9b9f0202d6 100644
--- a/test/core/surface/lame_client_test.c
+++ b/test/core/surface/lame_client_test.c
@@ -62,11 +62,9 @@ int main(int argc, char **argv) {
GPR_ASSERT(GRPC_CALL_OK == grpc_call_add_metadata(call, &md, 0));
/* and invoke the call */
- GPR_ASSERT(GRPC_CALL_OK ==
- grpc_call_start_invoke(call, cq, tag(1), tag(2), tag(3), 0));
+ GPR_ASSERT(GRPC_CALL_OK == grpc_call_invoke(call, cq, tag(2), tag(3), 0));
/* the call should immediately fail */
- cq_expect_invoke_accepted(cqv, tag(1), GRPC_OP_ERROR);
cq_expect_client_metadata_read(cqv, tag(2), NULL);
cq_expect_finished(cqv, tag(3), NULL);
cq_verify(cqv);