diff options
author | Craig Tiller <ctiller@google.com> | 2015-07-31 17:01:47 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2015-07-31 17:01:47 -0700 |
commit | 99e61645ce348df59c549011d5111cd11ed1c291 (patch) | |
tree | 1430bb509e343af5983899f6b0808a018222440b /test/core/surface | |
parent | 3e7c6a701c8aea58cacb023ffa8b3c75e7e67390 (diff) |
Update wrappers, tests to new create_call()
Diffstat (limited to 'test/core/surface')
-rw-r--r-- | test/core/surface/lame_client_test.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/core/surface/lame_client_test.c b/test/core/surface/lame_client_test.c index 3a7a3a36ee..fbe5f04380 100644 --- a/test/core/surface/lame_client_test.c +++ b/test/core/surface/lame_client_test.c @@ -60,7 +60,8 @@ int main(int argc, char **argv) { chan = grpc_lame_client_channel_create("lampoon:national"); GPR_ASSERT(chan); cq = grpc_completion_queue_create(); - call = grpc_channel_create_call(chan, cq, "/Foo", "anywhere", + call = grpc_channel_create_call(chan, NULL, GRPC_INHERIT_DEFAULTS, cq, "/Foo", + "anywhere", GRPC_TIMEOUT_SECONDS_TO_DEADLINE(100)); GPR_ASSERT(call); cqv = cq_verifier_create(cq); |