aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/interop
diff options
context:
space:
mode:
authorGravatar Dan Wittmer <wittmer@google.com>2017-11-17 15:23:32 -0800
committerGravatar Dan Wittmer <wittmer@google.com>2017-11-17 15:23:32 -0800
commitb88ab92af28bea0badf96b320538011abaffa2c6 (patch)
treef106034680f99e4077978e822eb9a5b715577b39 /test/cpp/interop
parent6d18fcd3ab5815af5044d416f20f7b684d950e17 (diff)
Fix formatting of RunServer params.
Diffstat (limited to 'test/cpp/interop')
-rw-r--r--test/cpp/interop/interop_server.cc3
-rw-r--r--test/cpp/interop/server_helper.h3
2 files changed, 2 insertions, 4 deletions
diff --git a/test/cpp/interop/interop_server.cc b/test/cpp/interop/interop_server.cc
index 5b9e229804..f697dda444 100644
--- a/test/cpp/interop/interop_server.cc
+++ b/test/cpp/interop/interop_server.cc
@@ -321,8 +321,7 @@ void grpc::testing::interop::RunServer(
}
void grpc::testing::interop::RunServer(
- std::shared_ptr<ServerCredentials> creds,
- const int port,
+ std::shared_ptr<ServerCredentials> creds, const int port,
ServerStartedCondition *server_started_condition) {
GPR_ASSERT(port != 0);
std::ostringstream server_address;
diff --git a/test/cpp/interop/server_helper.h b/test/cpp/interop/server_helper.h
index ab5de07c0e..92920b3936 100644
--- a/test/cpp/interop/server_helper.h
+++ b/test/cpp/interop/server_helper.h
@@ -69,8 +69,7 @@ void RunServer(std::shared_ptr<ServerCredentials> creds);
/// \param port Port to use for the server.
/// \param server_started_condition (optional) Struct holding mutex, condition
/// variable, and condition used to notify when the server has started.
-void RunServer(std::shared_ptr<ServerCredentials> creds,
- int port,
+void RunServer(std::shared_ptr<ServerCredentials> creds, int port,
ServerStartedCondition *server_started_condition);
} // namespace interop