aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/csharp/Grpc.IntegrationTesting/InteropServer.cs
diff options
context:
space:
mode:
authorGravatar Michael Lumish <mlumish@google.com>2015-05-08 10:00:14 -0700
committerGravatar Michael Lumish <mlumish@google.com>2015-05-08 10:00:14 -0700
commit7a24ecb303f9f13c9ca2cffeb9422b5083a88400 (patch)
tree08632942e4c151cd9e8789365f295a2ff0f5c2b3 /src/csharp/Grpc.IntegrationTesting/InteropServer.cs
parentd781835542a4610672fac133c62a1676aaf76dbc (diff)
parentb5897bf1a63c5801538649ede30d88f779c97008 (diff)
Merge pull request #1519 from jtattermusch/csharp_protoc_plugin
C# gRPC protoc plugin
Diffstat (limited to 'src/csharp/Grpc.IntegrationTesting/InteropServer.cs')
-rw-r--r--src/csharp/Grpc.IntegrationTesting/InteropServer.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/csharp/Grpc.IntegrationTesting/InteropServer.cs b/src/csharp/Grpc.IntegrationTesting/InteropServer.cs
index ca54aed041..87c3cbe1d4 100644
--- a/src/csharp/Grpc.IntegrationTesting/InteropServer.cs
+++ b/src/csharp/Grpc.IntegrationTesting/InteropServer.cs
@@ -91,7 +91,7 @@ namespace Grpc.IntegrationTesting
GrpcEnvironment.Initialize();
var server = new Server();
- server.AddServiceDefinition(TestServiceGrpc.BindService(new TestServiceImpl()));
+ server.AddServiceDefinition(TestService.BindService(new TestServiceImpl()));
string host = "0.0.0.0";
int port = options.port.Value;