aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp
diff options
context:
space:
mode:
authorGravatar Julien Boeuf <jboeuf@google.com>2015-02-23 13:00:36 -0800
committerGravatar Julien Boeuf <jboeuf@google.com>2015-02-23 13:00:36 -0800
commitc66f2a816e02b55c82679f5ae6ae29d37991b786 (patch)
tree70b6703f61187485a3815465eb50de70963829f2 /test/cpp
parentcd9b1c850db35ad37669dc0a650712b1cd29527f (diff)
Addressing iniitial feedback.
- Renaming default credentials -> google default credentials. - Various other things in cpp: - Adding Cpp wrapping for JWT Tokens. - Renaming ComposeCredentials -> CompositeCredentials.
Diffstat (limited to 'test/cpp')
-rw-r--r--test/cpp/util/create_test_channel.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cpp/util/create_test_channel.cc b/test/cpp/util/create_test_channel.cc
index b0472d32a9..66a9a7b7c4 100644
--- a/test/cpp/util/create_test_channel.cc
+++ b/test/cpp/util/create_test_channel.cc
@@ -75,7 +75,7 @@ std::shared_ptr<ChannelInterface> CreateTestChannel(
server.empty() ? override_hostname : server;
if (creds.get()) {
channel_creds =
- CredentialsFactory::ComposeCredentials(creds, channel_creds);
+ CredentialsFactory::CompositeCredentials(creds, channel_creds);
}
return CreateChannel(connect_to, channel_creds, channel_args);
} else {