diff options
author | Tobias Nießen <tniessen@tnie.de> | 2018-01-06 19:34:27 +0100 |
---|---|---|
committer | Tobias Nießen <tniessen@tnie.de> | 2018-01-11 16:49:38 +0100 |
commit | e890344d18fdc4ad096d2c5020a7101bc355ad8b (patch) | |
tree | 86c753dc24aa19f6dfc9cb31d22160e7aa6207a1 /test/parallel/test-http-agent-keepalive.js | |
parent | 61b4d60c5d9694e79069b1680b3736c96a5de501 (diff) | |
download | node-new-e890344d18fdc4ad096d2c5020a7101bc355ad8b.tar.gz |
test: fix spelling in test case comments
PR-URL: https://github.com/nodejs/node/pull/18018
Reviewed-By: Jon Moss <me@jonathanmoss.me>
Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
Reviewed-By: Weijia Wang <starkwang@126.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
Diffstat (limited to 'test/parallel/test-http-agent-keepalive.js')
-rw-r--r-- | test/parallel/test-http-agent-keepalive.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/parallel/test-http-agent-keepalive.js b/test/parallel/test-http-agent-keepalive.js index 2c8b6c1cc9..8ac8d79df1 100644 --- a/test/parallel/test-http-agent-keepalive.js +++ b/test/parallel/test-http-agent-keepalive.js @@ -89,7 +89,7 @@ function remoteClose() { process.nextTick(common.mustCall(() => { assert.strictEqual(agent.sockets[name], undefined); assert.strictEqual(agent.freeSockets[name].length, 1); - // waitting remote server close the socket + // waiting remote server close the socket setTimeout(common.mustCall(() => { assert.strictEqual(agent.sockets[name], undefined); assert.strictEqual(agent.freeSockets[name], undefined, @@ -102,7 +102,7 @@ function remoteClose() { } function remoteError() { - // remove server will destroy ths socket + // remote server will destroy the socket const req = get('/error', common.mustNotCall()); req.on('error', common.mustCall((err) => { assert(err); |