aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/csharp/Grpc.Core.Tests/ClientServerTest.cs
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2015-08-07 22:07:40 -0700
committerGravatar Jan Tattermusch <jtattermusch@google.com>2015-08-07 22:07:40 -0700
commitc75c57c5af620491d0043047533fa0e2f078b09f (patch)
tree41f6c1ace5e84a7e2ce3fd37cf412bb1d1301275 /src/csharp/Grpc.Core.Tests/ClientServerTest.cs
parentc8d7b8498c97694fcfc9d82d5aae64598697e7dd (diff)
added ResponseHeadersTest, fixed stylecop issues
Diffstat (limited to 'src/csharp/Grpc.Core.Tests/ClientServerTest.cs')
-rw-r--r--src/csharp/Grpc.Core.Tests/ClientServerTest.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/csharp/Grpc.Core.Tests/ClientServerTest.cs b/src/csharp/Grpc.Core.Tests/ClientServerTest.cs
index 08c80bbe53..f56fb744a6 100644
--- a/src/csharp/Grpc.Core.Tests/ClientServerTest.cs
+++ b/src/csharp/Grpc.Core.Tests/ClientServerTest.cs
@@ -217,7 +217,8 @@ namespace Grpc.Core.Tests
[Test]
public void UnaryCallPerformance()
{
- helper.UnaryHandler = new UnaryServerMethod<string, string>(async (request, context) => {
+ helper.UnaryHandler = new UnaryServerMethod<string, string>(async (request, context) =>
+ {
return request;
});