diff options
author | David Garcia Quintas <dgq@google.com> | 2017-04-11 16:09:31 -0700 |
---|---|---|
committer | David Garcia Quintas <dgq@google.com> | 2017-04-11 16:09:31 -0700 |
commit | a03d204dd73621f87043b0f63ab646ba92169a8d (patch) | |
tree | a71d1c94da453cbe7f986fd933bdf22d36a6186e | |
parent | 380c3a7e1e801cf5a24164a518dc59d6c431f5db (diff) |
Update credentials test after #9328
-rw-r--r-- | test/core/security/credentials_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/core/security/credentials_test.c b/test/core/security/credentials_test.c index c0933c64a6..9bdce71ba0 100644 --- a/test/core/security/credentials_test.c +++ b/test/core/security/credentials_test.c @@ -582,7 +582,7 @@ static void on_oauth2_creds_get_metadata_failure( static void validate_compute_engine_http_request( const grpc_httpcli_request *request) { GPR_ASSERT(request->handshaker != &grpc_httpcli_ssl); - GPR_ASSERT(strcmp(request->host, "metadata") == 0); + GPR_ASSERT(strcmp(request->host, "metadata.google.internal") == 0); GPR_ASSERT( strcmp(request->http.path, "/computeMetadata/v1/instance/service-accounts/default/token") == |