diff options
author | Jan Tattermusch <jtattermusch@google.com> | 2015-04-27 21:28:58 -0700 |
---|---|---|
committer | Jan Tattermusch <jtattermusch@google.com> | 2015-04-27 21:28:58 -0700 |
commit | aa5fba43b580bb42ca563531e3c9c9c970e63ecd (patch) | |
tree | 6a449a125530c010a2ccf0178446da7e6d73b8bd /src | |
parent | 0bbfa382eadee4796e30f71c7dccf8d72ed7af5b (diff) |
Fix assertion for compute_engine_creds
Diffstat (limited to 'src')
-rw-r--r-- | src/csharp/Grpc.IntegrationTesting/InteropClient.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/csharp/Grpc.IntegrationTesting/InteropClient.cs b/src/csharp/Grpc.IntegrationTesting/InteropClient.cs index c05a5cc6ce..1fbae374b1 100644 --- a/src/csharp/Grpc.IntegrationTesting/InteropClient.cs +++ b/src/csharp/Grpc.IntegrationTesting/InteropClient.cs @@ -344,7 +344,7 @@ namespace Grpc.IntegrationTesting Assert.AreEqual(PayloadType.COMPRESSABLE, response.Payload.Type); Assert.AreEqual(314159, response.Payload.Body.Length); Assert.AreEqual(AuthScopeResponse, response.OauthScope); - Assert.AreEqual(ServiceAccountUser, response.Username); + Assert.AreEqual(ComputeEngineUser, response.Username); Console.WriteLine("Passed!"); } |