diff options
author | Yash Tibrewal <yashkt@google.com> | 2017-10-30 16:28:56 -0700 |
---|---|---|
committer | Yash Tibrewal <yashkt@google.com> | 2017-10-30 16:28:56 -0700 |
commit | 268685bcbd1a3af4239f4cd0f623b5f6d033b524 (patch) | |
tree | 361f6a43eb4ab9d040929ab4327e16bee0cbfa88 /test/core/client_channel | |
parent | f8a6c8297c6e9e9024ff169291fb0485862c190f (diff) | |
parent | 94a52266c9570b5658764e16832f8eef246641f1 (diff) |
Merge branch 'master' into testc++ize
Diffstat (limited to 'test/core/client_channel')
-rw-r--r-- | test/core/client_channel/lb_policies_test.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/core/client_channel/lb_policies_test.cc b/test/core/client_channel/lb_policies_test.cc index 4379af11da..1f0d310380 100644 --- a/test/core/client_channel/lb_policies_test.cc +++ b/test/core/client_channel/lb_policies_test.cc @@ -53,8 +53,8 @@ typedef struct request_sequences { size_t n; /* number of iterations */ int *connections; /* indexed by the interation number, value is the index of the server it connected to or -1 if none */ - int *connectivity_states; /* indexed by the interation number, value is the - client connectivity state */ + /* indexed by the interation number, value is the client connectivity state */ + grpc_connectivity_state *connectivity_states; } request_sequences; typedef void (*verifier_fn)(const servers_fixture *, grpc_channel *, |