Skip to content

Commit 2bed534

Browse files
committed
squash!: remove NODE_FIPS_MODE constant
1 parent 10502bc commit 2bed534

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

test/parallel/test-cli-node-print-help.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,14 @@ function startPrintHelpTest() {
2424
function validateNodePrintHelp() {
2525
const config = process.config;
2626
const HAVE_OPENSSL = common.hasCrypto;
27-
const NODE_FIPS_MODE = fipsMode;
2827
const NODE_HAVE_I18N_SUPPORT = common.hasIntl;
2928
const HAVE_INSPECTOR = config.variables.v8_enable_inspector === 1;
3029

3130
const cliHelpOptions = [
3231
{ compileConstant: HAVE_OPENSSL,
3332
flags: [ '--openssl-config=...', '--tls-cipher-list=...',
3433
'--use-bundled-ca', '--use-openssl-ca' ] },
35-
{ compileConstant: NODE_FIPS_MODE,
34+
{ compileConstant: fipsMode,
3635
flags: [ '--enable-fips', '--force-fips' ] },
3736
{ compileConstant: NODE_HAVE_I18N_SUPPORT,
3837
flags: [ '--icu-data-dir=...', 'NODE_ICU_DATA' ] },

0 commit comments

Comments
 (0)