aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/microbenchmarks/fullstack_fixtures.h
diff options
context:
space:
mode:
authorGravatar Mark D. Roth <roth@google.com>2017-11-27 08:31:50 -0800
committerGravatar Mark D. Roth <roth@google.com>2017-11-27 08:31:50 -0800
commitaaad0c2e5a301d27a3e077e89325eb91cc24da22 (patch)
tree9ff5fe11d8e4940f6f86b9cc069211269ef84c92 /test/cpp/microbenchmarks/fullstack_fixtures.h
parentb9f34acfe51fe5740186103a3929657fd89e7c42 (diff)
clang-format
Diffstat (limited to 'test/cpp/microbenchmarks/fullstack_fixtures.h')
-rw-r--r--test/cpp/microbenchmarks/fullstack_fixtures.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/cpp/microbenchmarks/fullstack_fixtures.h b/test/cpp/microbenchmarks/fullstack_fixtures.h
index 9a91190049..7e20843875 100644
--- a/test/cpp/microbenchmarks/fullstack_fixtures.h
+++ b/test/cpp/microbenchmarks/fullstack_fixtures.h
@@ -186,8 +186,8 @@ class EndpointPairFixture : public BaseFixture {
grpc_server_setup_transport(&exec_ctx, server_->c_server(),
server_transport_, nullptr, server_args);
- grpc_chttp2_transport_start_reading(&exec_ctx, server_transport_,
- nullptr, nullptr);
+ grpc_chttp2_transport_start_reading(&exec_ctx, server_transport_, nullptr,
+ nullptr);
}
/* create channel */
@@ -197,14 +197,14 @@ class EndpointPairFixture : public BaseFixture {
fixture_configuration.ApplyCommonChannelArguments(&args);
grpc_channel_args c_args = args.c_channel_args();
- client_transport_ = grpc_create_chttp2_transport(
- &exec_ctx, &c_args, endpoints.client, true);
+ client_transport_ = grpc_create_chttp2_transport(&exec_ctx, &c_args,
+ endpoints.client, true);
GPR_ASSERT(client_transport_);
grpc_channel* channel =
grpc_channel_create(&exec_ctx, "target", &c_args,
GRPC_CLIENT_DIRECT_CHANNEL, client_transport_);
- grpc_chttp2_transport_start_reading(&exec_ctx, client_transport_,
- nullptr, nullptr);
+ grpc_chttp2_transport_start_reading(&exec_ctx, client_transport_, nullptr,
+ nullptr);
channel_ = CreateChannelInternal("", channel);
}