aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/csharp/Grpc.IntegrationTesting/RunnerClientServerTest.cs
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2016-02-23 22:12:40 -0800
committerGravatar Craig Tiller <ctiller@google.com>2016-02-23 22:12:40 -0800
commit3163a46f37eeb34ce950fdabda06c100ffd13f07 (patch)
treecf4d5a61906e5143cbb2085a15fabdaa33425aa4 /src/csharp/Grpc.IntegrationTesting/RunnerClientServerTest.cs
parent5b18682adda061060f3e68d91a56e0c5b484c1ad (diff)
parentc95bfefa5ecd38fdbb8d3a14d425cf5cd7337fe6 (diff)
Merge github.com:grpc/grpc into 44
Diffstat (limited to 'src/csharp/Grpc.IntegrationTesting/RunnerClientServerTest.cs')
-rw-r--r--src/csharp/Grpc.IntegrationTesting/RunnerClientServerTest.cs6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/csharp/Grpc.IntegrationTesting/RunnerClientServerTest.cs b/src/csharp/Grpc.IntegrationTesting/RunnerClientServerTest.cs
index 3dd91b7948..06d5ee93d8 100644
--- a/src/csharp/Grpc.IntegrationTesting/RunnerClientServerTest.cs
+++ b/src/csharp/Grpc.IntegrationTesting/RunnerClientServerTest.cs
@@ -1,6 +1,6 @@
#region Copyright notice and license
-// Copyright 2015, Google Inc.
+// Copyright 2015-2016, Google Inc.
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
@@ -48,7 +48,6 @@ namespace Grpc.IntegrationTesting
/// </summary>
public class RunnerClientServerTest
{
- const string Host = "localhost";
IServerRunner serverRunner;
[TestFixtureSetUp]
@@ -57,7 +56,6 @@ namespace Grpc.IntegrationTesting
var serverConfig = new ServerConfig
{
ServerType = ServerType.ASYNC_SERVER,
- Host = Host,
PayloadConfig = new PayloadConfig
{
SimpleParams = new SimpleProtoParams
@@ -83,7 +81,7 @@ namespace Grpc.IntegrationTesting
{
var config = new ClientConfig
{
- ServerTargets = { string.Format("{0}:{1}", Host, serverRunner.BoundPort) },
+ ServerTargets = { string.Format("{0}:{1}", "localhost", serverRunner.BoundPort) },
RpcType = RpcType.UNARY,
LoadParams = new LoadParams { ClosedLoop = new ClosedLoopParams() },
PayloadConfig = new PayloadConfig