diff options
author | Ben Noordhuis <info@bnoordhuis.nl> | 2012-01-23 22:38:22 +0100 |
---|---|---|
committer | Ben Noordhuis <info@bnoordhuis.nl> | 2012-01-24 00:11:44 +0100 |
commit | 57ddf5f50ae3c7e3fe463da9a36c3e0bd615519c (patch) | |
tree | f77599ae322cc487fc23f866ca80b9c1b355146d | |
parent | aef62a03ee27ffb149950df5caccc2b4965169d8 (diff) | |
download | node-new-57ddf5f50ae3c7e3fe463da9a36c3e0bd615519c.tar.gz |
test: fix typos in error messages
-rw-r--r-- | test/simple/test-dgram-multicast-multi-process.js | 2 | ||||
-rw-r--r-- | test/simple/test-dgram-multicast-setTTL.js | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/test/simple/test-dgram-multicast-multi-process.js b/test/simple/test-dgram-multicast-multi-process.js index 79df7a9e56..65d9dfc61c 100644 --- a/test/simple/test-dgram-multicast-multi-process.js +++ b/test/simple/test-dgram-multicast-multi-process.js @@ -85,7 +85,7 @@ if (cluster.isMaster) { } }); - console.error('%d received %d matching messges.', worker.pid + console.error('%d received %d matching messages.', worker.pid , count); assert.equal(count, messages.length diff --git a/test/simple/test-dgram-multicast-setTTL.js b/test/simple/test-dgram-multicast-setTTL.js index a2207a78d0..cb870efdcf 100644 --- a/test/simple/test-dgram-multicast-setTTL.js +++ b/test/simple/test-dgram-multicast-setTTL.js @@ -35,7 +35,7 @@ try { thrown = true; } -assert(thrown, 'Setting an invalid mutlicast TTL should throw some error'); +assert(thrown, 'Setting an invalid multicast TTL should throw some error'); //close the socket -socket.close();
\ No newline at end of file +socket.close(); |