aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2017-01-05 13:24:52 -0800
committerGravatar Craig Tiller <ctiller@google.com>2017-01-05 13:24:52 -0800
commit4f8a11e5c72d8ac9d3a73b3da1baebc82d90dfd8 (patch)
treec3a33e7cb8b714fe89850228cec5ab67483fb7ec /test
parent78e4bf629c259ba3e0d523296a23910dedc6676b (diff)
Get ASAN building again
Diffstat (limited to 'test')
-rw-r--r--test/core/end2end/invalid_call_argument_test.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/core/end2end/invalid_call_argument_test.c b/test/core/end2end/invalid_call_argument_test.c
index 839facf488..9067b24168 100644
--- a/test/core/end2end/invalid_call_argument_test.c
+++ b/test/core/end2end/invalid_call_argument_test.c
@@ -576,9 +576,8 @@ static void test_invalid_initial_metadata_reserved_key() {
gpr_log(GPR_INFO, "test_invalid_initial_metadata_reserved_key");
grpc_metadata metadata;
- metadata.key = ":start_with_colon";
- metadata.value = "value";
- metadata.value_length = 6;
+ metadata.key = grpc_slice_from_static_string(":start_with_colon");
+ metadata.value = grpc_slice_from_static_string("value");
grpc_op *op;
prepare_test(1);