aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Muxi Yan <mxyan@google.com>2017-02-06 13:31:05 -0800
committerGravatar Muxi Yan <mxyan@google.com>2017-02-06 13:31:05 -0800
commite1cf1b691d3e82742214c8772a71e79e3209c2ce (patch)
treed707498f1673550d5185e2061e6a97ba0a8ae3ad
parentd5923578c0c43a5716dd78c6467ccdd5199feff2 (diff)
nit fix 2
-rw-r--r--src/objective-c/tests/CronetUnitTests/CronetUnitTests.m6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/objective-c/tests/CronetUnitTests/CronetUnitTests.m b/src/objective-c/tests/CronetUnitTests/CronetUnitTests.m
index 408952a091..b6237c950b 100644
--- a/src/objective-c/tests/CronetUnitTests/CronetUnitTests.m
+++ b/src/objective-c/tests/CronetUnitTests/CronetUnitTests.m
@@ -273,11 +273,11 @@ unsigned int parse_h2_length(const char *field) {
grpc_completion_queue_destroy(cq);
}
-- (void)packetCoalescing:(BOOL)use_coalescing {
+- (void)packetCoalescing:(BOOL)useCoalescing {
grpc_arg arg;
arg.key = GRPC_ARG_USE_CRONET_PACKET_COALESCING;
arg.type = GRPC_ARG_INTEGER;
- arg.value.integer = use_coalescing ? 1 : 0;
+ arg.value.integer = useCoalescing ? 1 : 0;
grpc_channel_args *args = grpc_channel_args_copy_and_add(NULL, &arg, 1);
grpc_call *c;
grpc_slice request_payload_slice =
@@ -418,7 +418,7 @@ unsigned int parse_h2_length(const char *field) {
}
}
- XCTAssert(coalesced == use_coalescing);
+ XCTAssert(coalesced == useCoalescing);
SSL_free(ssl);
SSL_CTX_free(ctx);
close(s);