aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2016-11-10 09:54:33 +0100
committerGravatar Jan Tattermusch <jtattermusch@google.com>2016-11-10 09:54:33 +0100
commit60d0f4ced3204e4559ce915a320bef307a291c66 (patch)
treebbf109c421b85aee570f84ea9db3f0da6a8bea92 /src
parent998fdd0c46a0684a6c7348751cc1632ce21d3e2f (diff)
add a comment
Diffstat (limited to 'src')
-rw-r--r--src/csharp/Grpc.IntegrationTesting/MetadataCredentialsTest.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/csharp/Grpc.IntegrationTesting/MetadataCredentialsTest.cs b/src/csharp/Grpc.IntegrationTesting/MetadataCredentialsTest.cs
index 10ab67abae..d55e658d94 100644
--- a/src/csharp/Grpc.IntegrationTesting/MetadataCredentialsTest.cs
+++ b/src/csharp/Grpc.IntegrationTesting/MetadataCredentialsTest.cs
@@ -112,6 +112,7 @@ namespace Grpc.IntegrationTesting
client = new TestService.TestServiceClient(channel);
var ex = Assert.Throws<RpcException>(() => client.UnaryCall(new SimpleRequest { }));
+ // StatusCode.Unknown as the server-side handler throws an exception after not receiving the authorization header.
Assert.AreEqual(StatusCode.Unknown, ex.Status.StatusCode);
}