aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/node/test/health_test.js
diff options
context:
space:
mode:
authorGravatar murgatroid99 <mlumish@google.com>2015-07-30 10:41:59 -0700
committerGravatar murgatroid99 <mlumish@google.com>2015-07-30 10:41:59 -0700
commit61cfcc2e5ba3981ae098c44043bf66294c60c599 (patch)
treecf49ad69791a69b210721fa165ecd87c2ab99f2e /src/node/test/health_test.js
parent1a7dcac038dfb64ca499847b42f1ccb03849211f (diff)
parent2486c8a7c28232cd4c95b297a835d2565d30e15e (diff)
Resolved merge conflicts
Diffstat (limited to 'src/node/test/health_test.js')
-rw-r--r--src/node/test/health_test.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/node/test/health_test.js b/src/node/test/health_test.js
index fa23dc3ed8..be4ef1d251 100644
--- a/src/node/test/health_test.js
+++ b/src/node/test/health_test.js
@@ -57,7 +57,8 @@ describe('Health Checking', function() {
var port_num = healthServer.bind('0.0.0.0:0',
grpc.ServerCredentials.createInsecure());
healthServer.start();
- healthClient = new health.Client('localhost:' + port_num);
+ healthClient = new health.Client('localhost:' + port_num,
+ grpc.Credentials.createInsecure());
});
after(function() {
healthServer.shutdown();