aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/node/test
diff options
context:
space:
mode:
authorGravatar murgatroid99 <mlumish@google.com>2015-08-14 11:09:04 -0700
committerGravatar murgatroid99 <mlumish@google.com>2015-08-14 11:09:04 -0700
commitbc15a78a53ebe76a1fde80037110f764567ad81d (patch)
tree32813ee52eaa262ff80773c8f5d25d55463a82c2 /src/node/test
parent39e18040bd0a7e07f2a0fa4b1aa6b82a904d7503 (diff)
Replaced remaining references to 'listen' with 'start'
Diffstat (limited to 'src/node/test')
-rw-r--r--src/node/test/server_test.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/node/test/server_test.js b/src/node/test/server_test.js
index a9df43909e..20c9a07ffa 100644
--- a/src/node/test/server_test.js
+++ b/src/node/test/server_test.js
@@ -83,7 +83,7 @@ describe('server', function() {
server = new grpc.Server();
});
});
- describe('listen', function() {
+ describe('start', function() {
var server;
before(function() {
server = new grpc.Server();
@@ -92,7 +92,7 @@ describe('server', function() {
after(function() {
server.shutdown();
});
- it('should listen without error', function() {
+ it('should start without error', function() {
assert.doesNotThrow(function() {
server.start();
});