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');