aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2015-04-27 21:28:58 -0700
committerGravatar Jan Tattermusch <jtattermusch@google.com>2015-04-27 21:28:58 -0700
commitaa5fba43b580bb42ca563531e3c9c9c970e63ecd (patch)
tree6a449a125530c010a2ccf0178446da7e6d73b8bd /src
parent0bbfa382eadee4796e30f71c7dccf8d72ed7af5b (diff)
Fix assertion for compute_engine_creds
Diffstat (limited to 'src')
-rw-r--r--src/csharp/Grpc.IntegrationTesting/InteropClient.cs2
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!");
}