diff options
author | Gus Caplan <me@gus.host> | 2018-08-11 15:06:06 -0500 |
---|---|---|
committer | Gus Caplan <me@gus.host> | 2018-08-16 11:11:13 -0500 |
commit | be9f7860e128d88abc5d92dbc94ca96437141da7 (patch) | |
tree | 8a74589b2c023f19619b4d2769e722ec1f690d1d /test/parallel/test-cli-node-print-help.js | |
parent | 88105c998ef9d3f54aa8f22b82ec8cc31cbfac95 (diff) | |
download | node-new-be9f7860e128d88abc5d92dbc94ca96437141da7.tar.gz |
cli: fix flags on help output
PR-URL: https://github.com/nodejs/node/pull/22271
Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com>
Diffstat (limited to 'test/parallel/test-cli-node-print-help.js')
-rw-r--r-- | test/parallel/test-cli-node-print-help.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test/parallel/test-cli-node-print-help.js b/test/parallel/test-cli-node-print-help.js index 7e21f01b69..ad6da699e4 100644 --- a/test/parallel/test-cli-node-print-help.js +++ b/test/parallel/test-cli-node-print-help.js @@ -32,9 +32,7 @@ function validateNodePrintHelp() { { compileConstant: NODE_FIPS_MODE, flags: [ '--enable-fips', '--force-fips' ] }, { compileConstant: NODE_HAVE_I18N_SUPPORT, - flags: [ '--experimental-modules', '--experimental-vm-modules', - '--icu-data-dir=dir', '--preserve-symlinks', - 'NODE_ICU_DATA', 'NODE_PRESERVE_SYMLINKS' ] }, + flags: [ '--icu-data-dir=dir', 'NODE_ICU_DATA' ] }, { compileConstant: HAVE_INSPECTOR, flags: [ '--inspect-brk[=[host:]port]', '--inspect-port=[host:]port', '--inspect[=[host:]port]' ] }, |