aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/channel
diff options
context:
space:
mode:
authorGravatar Mark D. Roth <roth@google.com>2016-11-07 13:42:54 -0800
committerGravatar Mark D. Roth <roth@google.com>2016-11-07 13:42:54 -0800
commit3d88341c54ce8532066194383083ef61a766aa87 (patch)
tree58fe38adfe7703817ec7cfc71850b31eea160f70 /test/core/channel
parentb32149461a3e04ae41fee5b414587253582aa435 (diff)
Populate latency field in final_info.
Diffstat (limited to 'test/core/channel')
-rw-r--r--test/core/channel/channel_stack_test.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/core/channel/channel_stack_test.c b/test/core/channel/channel_stack_test.c
index 26fc3dc4a8..f1816ae46f 100644
--- a/test/core/channel/channel_stack_test.c
+++ b/test/core/channel/channel_stack_test.c
@@ -138,7 +138,8 @@ static void test_create_channel_stack(void) {
call_stack = gpr_malloc(channel_stack->call_stack_size);
grpc_error *error = grpc_call_stack_init(
&exec_ctx, channel_stack, 1, free_call, call_stack, NULL, NULL, path,
- gpr_inf_future(GPR_CLOCK_MONOTONIC), call_stack);
+ gpr_now(GPR_CLOCK_MONOTONIC), gpr_inf_future(GPR_CLOCK_MONOTONIC),
+ call_stack);
GPR_ASSERT(error == GRPC_ERROR_NONE);
GPR_ASSERT(call_stack->count == 1);
call_elem = grpc_call_stack_element(call_stack, 0);