summaryrefslogtreecommitdiff
path: root/test/abort
diff options
context:
space:
mode:
authorTobias Nießen <tniessen@tnie.de>2018-01-06 19:34:27 +0100
committerTobias Nießen <tniessen@tnie.de>2018-01-11 16:49:38 +0100
commite890344d18fdc4ad096d2c5020a7101bc355ad8b (patch)
tree86c753dc24aa19f6dfc9cb31d22160e7aa6207a1 /test/abort
parent61b4d60c5d9694e79069b1680b3736c96a5de501 (diff)
downloadandroid-node-v8-e890344d18fdc4ad096d2c5020a7101bc355ad8b.tar.gz
android-node-v8-e890344d18fdc4ad096d2c5020a7101bc355ad8b.tar.bz2
android-node-v8-e890344d18fdc4ad096d2c5020a7101bc355ad8b.zip
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/abort')
-rw-r--r--test/abort/test-http-parser-consume.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/abort/test-http-parser-consume.js b/test/abort/test-http-parser-consume.js
index 9115aba70d..673e04cfa3 100644
--- a/test/abort/test-http-parser-consume.js
+++ b/test/abort/test-http-parser-consume.js
@@ -11,12 +11,12 @@ if (process.argv[2] === 'child') {
const rr = get({ port: server.address().port }, common.mustCall(() => {
// This bad input (0) should abort the parser and the process
rr.parser.consume(0);
- // This line should be unreachanble.
+ // This line should be unreachable.
assert.fail('this should be unreachable');
}));
}));
} else {
- // super-proces
+ // super-process
const child = spawn(process.execPath, [__filename, 'child']);
child.stdout.on('data', common.mustNotCall());