aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/interop
diff options
context:
space:
mode:
authorGravatar Vijay Pai <vpai@google.com>2015-10-01 23:23:50 -0700
committerGravatar Vijay Pai <vpai@google.com>2015-10-01 23:23:50 -0700
commit7a94236d698477636dd06282f12f706cad527029 (patch)
treea61d2b44b373d5e7701a52059b31800a7583c230 /test/cpp/interop
parent8f64d5c311ecb3a58fe5075e25732ea1b2467436 (diff)
parentb7a597771f4db347748b5e5f89d02ed067c5a614 (diff)
Merge pull request #3556 from ctiller/clangf
Fix clang-format script
Diffstat (limited to 'test/cpp/interop')
-rw-r--r--test/cpp/interop/client.cc4
-rw-r--r--test/cpp/interop/interop_client.cc3
-rw-r--r--test/cpp/interop/interop_test.cc1
3 files changed, 3 insertions, 5 deletions
diff --git a/test/cpp/interop/client.cc b/test/cpp/interop/client.cc
index 58c71cca35..8f5ea0084f 100644
--- a/test/cpp/interop/client.cc
+++ b/test/cpp/interop/client.cc
@@ -146,8 +146,8 @@ int main(int argc, char** argv) {
if (FLAGS_enable_ssl) {
grpc::string json_key = GetServiceAccountJsonKey();
client.DoJwtTokenCreds(json_key);
- client.DoOauth2AuthToken(
- FLAGS_default_service_account, FLAGS_oauth_scope);
+ client.DoOauth2AuthToken(FLAGS_default_service_account,
+ FLAGS_oauth_scope);
client.DoPerRpcCreds(json_key);
}
// compute_engine_creds only runs in GCE.
diff --git a/test/cpp/interop/interop_client.cc b/test/cpp/interop/interop_client.cc
index 02e10a50aa..5169945762 100644
--- a/test/cpp/interop/interop_client.cc
+++ b/test/cpp/interop/interop_client.cc
@@ -203,8 +203,7 @@ void InteropClient::DoOauth2AuthToken(const grpc::string& username,
}
void InteropClient::DoPerRpcCreds(const grpc::string& json_key) {
- gpr_log(GPR_INFO,
- "Sending a unary rpc with per-rpc JWT access token ...");
+ gpr_log(GPR_INFO, "Sending a unary rpc with per-rpc JWT access token ...");
SimpleRequest request;
SimpleResponse response;
request.set_fill_username(true);
diff --git a/test/cpp/interop/interop_test.cc b/test/cpp/interop/interop_test.cc
index f01b032e95..faf6698903 100644
--- a/test/cpp/interop/interop_test.cc
+++ b/test/cpp/interop/interop_test.cc
@@ -55,7 +55,6 @@ extern "C" {
#include "src/core/support/string.h"
}
-
int test_client(const char* root, const char* host, int port) {
int status;
pid_t cli;