Skip to content

Commit 93b0c78

Browse files
Trotttargos
authored andcommitted
test: fix comment typo
PR-URL: #38161 Refs: #36481 Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Jan Krems <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Stephen Belanger <[email protected]> Reviewed-By: Gerhard Stöbich <[email protected]> Reviewed-By: Michaël Zasso <[email protected]>
1 parent 2a6203d commit 93b0c78

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)