Skip to content

Commit 117cad9

Browse files
committed
Updating the error message in test-cli-options-negation.
1 parent 7f9f732 commit 117cad9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graal-nodejs/test/parallel/test-cli-options-negation.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ assert(spawnWithFlags(['--no-max-http-header-size']).stderr.toString().includes(
2323

2424
// Inexistant flags cannot be negated.
2525
assert(spawnWithFlags(['--no-i-dont-exist']).stderr.toString().includes(
26-
'bad option: --no-i-dont-exist',
26+
"Unrecognized argument: '--no-i-dont-exist'.",
2727
));
2828

2929
function spawnWithFlags(flags) {

0 commit comments

Comments
 (0)