Skip to content
Snippets Groups Projects
Commit 60d0f4ce authored by Jan Tattermusch's avatar Jan Tattermusch
Browse files

add a comment

parent 998fdd0c
No related branches found
No related tags found
No related merge requests found
...@@ -112,6 +112,7 @@ namespace Grpc.IntegrationTesting ...@@ -112,6 +112,7 @@ namespace Grpc.IntegrationTesting
client = new TestService.TestServiceClient(channel); client = new TestService.TestServiceClient(channel);
var ex = Assert.Throws<RpcException>(() => client.UnaryCall(new SimpleRequest { })); 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); Assert.AreEqual(StatusCode.Unknown, ex.Status.StatusCode);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment