diff options
author | Noah Eisen <ncteisen@gmail.com> | 2016-10-20 13:57:04 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-20 13:57:04 -0700 |
commit | 5e475a4c91d1a1698dac34c638c608d5b69c11a0 (patch) | |
tree | 9b7f9ead571103dcd217e3c714250dd5f4a4fac3 /src | |
parent | 74b731e42fe719fe4b753c61138854de9f5b9c93 (diff) | |
parent | a17b9bda5aa9d1f55dd879cec61998a9293be560 (diff) |
Merge pull request #8440 from ncteisen/csharp_interop_test_fix
Modified CSharp Interop Test to Conform with Spec
Diffstat (limited to 'src')
-rw-r--r-- | src/csharp/Grpc.IntegrationTesting/InteropClient.cs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/csharp/Grpc.IntegrationTesting/InteropClient.cs b/src/csharp/Grpc.IntegrationTesting/InteropClient.cs index cb926328e0..7a46a55a5b 100644 --- a/src/csharp/Grpc.IntegrationTesting/InteropClient.cs +++ b/src/csharp/Grpc.IntegrationTesting/InteropClient.cs @@ -583,7 +583,6 @@ namespace Grpc.IntegrationTesting var e = Assert.Throws<RpcException>(() => client.UnimplementedCall(new Empty())); Assert.AreEqual(StatusCode.Unimplemented, e.Status.StatusCode); - Assert.AreEqual("", e.Status.Detail); Console.WriteLine("Passed!"); } |