diff options
author | Mark D. Roth <roth@google.com> | 2016-08-04 13:10:13 -0700 |
---|---|---|
committer | Mark D. Roth <roth@google.com> | 2016-08-04 13:10:13 -0700 |
commit | 0a05ab6e8e8e605f0fe4f2d0f4373d660bbdfe06 (patch) | |
tree | b3a7b90dc66eb5ba742a6b3ba4fac28d09c435f2 /test/core/http | |
parent | b350209b9f60fe64bcdef65f4df41093bc030d61 (diff) |
clang-format
Diffstat (limited to 'test/core/http')
-rw-r--r-- | test/core/http/parser_test.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/core/http/parser_test.c b/test/core/http/parser_test.c index 211690eff9..2fc354d9ee 100644 --- a/test/core/http/parser_test.c +++ b/test/core/http/parser_test.c @@ -62,8 +62,8 @@ static void test_request_succeeds(grpc_slice_split_mode split_mode, grpc_http_parser_init(&parser, GRPC_HTTP_REQUEST, &request); for (i = 0; i < num_slices; i++) { - GPR_ASSERT(grpc_http_parser_parse(&parser, slices[i], NULL) - == GRPC_ERROR_NONE); + GPR_ASSERT(grpc_http_parser_parse(&parser, slices[i], NULL) == + GRPC_ERROR_NONE); gpr_slice_unref(slices[i]); } GPR_ASSERT(grpc_http_parser_eof(&parser) == GRPC_ERROR_NONE); @@ -119,8 +119,8 @@ static void test_succeeds(grpc_slice_split_mode split_mode, char *response_text, grpc_http_parser_init(&parser, GRPC_HTTP_RESPONSE, &response); for (i = 0; i < num_slices; i++) { - GPR_ASSERT(grpc_http_parser_parse(&parser, slices[i], NULL) - == GRPC_ERROR_NONE); + GPR_ASSERT(grpc_http_parser_parse(&parser, slices[i], NULL) == + GRPC_ERROR_NONE); gpr_slice_unref(slices[i]); } GPR_ASSERT(grpc_http_parser_eof(&parser) == GRPC_ERROR_NONE); |