aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/node/test/health_test.js
diff options
context:
space:
mode:
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 bb700cc46c..93b068be31 100644
--- a/src/node/test/health_test.js
+++ b/src/node/test/health_test.js
@@ -56,7 +56,8 @@ describe('Health Checking', function() {
before(function() {
var port_num = healthServer.bind('0.0.0.0:0');
healthServer.start();
- healthClient = new health.Client('localhost:' + port_num);
+ healthClient = new health.Client('localhost:' + port_num,
+ grpc.Credentials.createInsecure());
});
after(function() {
healthServer.shutdown();