Skip to content

Commit 24b5e12

Browse files
Trottrichardlau
authored andcommitted
test: fix comment typo
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>
1 parent c3b6ce3 commit 24b5e12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/inspector-cli/test-inspector-cli-address.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ function launchTarget(...args) {
1616
const childProc = spawn(process.execPath, args);
1717
return new Promise((resolve, reject) => {
1818
const onExit = () => {
19-
reject(new Error('Child process exits unexpectly'));
19+
reject(new Error('Child process exits unexpectedly'));
2020
};
2121
childProc.on('exit', onExit);
2222
childProc.stderr.setEncoding('utf8');

0 commit comments

Comments
 (0)