aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/csharp/Grpc.Core.Tests
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2015-05-01 11:23:28 -0700
committerGravatar Jan Tattermusch <jtattermusch@google.com>2015-05-04 09:21:37 -0700
commit618647dc7402c65631573d67b1500114ffb74197 (patch)
treee10b81bb01f5835ddffbd2e73953af0486a74b03 /src/csharp/Grpc.Core.Tests
parente5c446004f2c1d3e2f2e5f0963f99332c6c94bc4 (diff)
fixed some stylecop warnings
Diffstat (limited to 'src/csharp/Grpc.Core.Tests')
-rw-r--r--src/csharp/Grpc.Core.Tests/ClientServerTest.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/csharp/Grpc.Core.Tests/ClientServerTest.cs b/src/csharp/Grpc.Core.Tests/ClientServerTest.cs
index c91efe53b4..8c4b92fbad 100644
--- a/src/csharp/Grpc.Core.Tests/ClientServerTest.cs
+++ b/src/csharp/Grpc.Core.Tests/ClientServerTest.cs
@@ -179,7 +179,7 @@ namespace Grpc.Core.Tests
{
await callResult.Result;
}
- catch(RpcException e)
+ catch (RpcException e)
{
Assert.AreEqual(StatusCode.Unknown, e.Status.StatusCode);
}
@@ -201,7 +201,7 @@ namespace Grpc.Core.Tests
{
await callResult.Result;
}
- catch(RpcException e)
+ catch (RpcException e)
{
Assert.AreEqual(StatusCode.Cancelled, e.Status.StatusCode);
}