Skip to content

Commit

Permalink
test: fix comment typo
Browse files Browse the repository at this point in the history
PR-URL: #38161
Backport-PR-URL: #38858
Refs: #36481
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Jan Krems <jan.krems@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
  • Loading branch information
Trott authored and richardlau committed Jul 20, 2021
1 parent a8924fa commit dd2642b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/inspector-cli/test-inspector-cli-address.js
Expand Up @@ -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');
Expand Down

0 comments on commit dd2642b

Please sign in to comment.