From dd2642b5db3270fff3013d9d956113a81a537058 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Wed, 21 Apr 2021 17:00:50 -0700 Subject: [PATCH] test: fix comment typo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/38161 Backport-PR-URL: https://github.com/nodejs/node/pull/38858 Refs: https://github.com/nodejs/node/discussions/36481 Reviewed-By: Matteo Collina Reviewed-By: Jan Krems Reviewed-By: Colin Ihrig Reviewed-By: Stephen Belanger Reviewed-By: Gerhard Stöbich Reviewed-By: Michaël Zasso --- test/inspector-cli/test-inspector-cli-address.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/inspector-cli/test-inspector-cli-address.js b/test/inspector-cli/test-inspector-cli-address.js index 81507c3181e0f7..89c70687c819b8 100644 --- a/test/inspector-cli/test-inspector-cli-address.js +++ b/test/inspector-cli/test-inspector-cli-address.js @@ -16,7 +16,7 @@ function launchTarget(...args) { const childProc = spawn(process.execPath, args); return new Promise((resolve, reject) => { const onExit = () => { - reject(new Error('Child process exits unexpectly')); + reject(new Error('Child process exits unexpectedly')); }; childProc.on('exit', onExit); childProc.stderr.setEncoding('utf8');