summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/parallel/test-crypto-secure-heap.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-crypto-secure-heap.js b/test/parallel/test-crypto-secure-heap.js
index 2a851019b5..64faa83a3e 100644
--- a/test/parallel/test-crypto-secure-heap.js
+++ b/test/parallel/test-crypto-secure-heap.js
@@ -26,7 +26,7 @@ if (process.argv[2] === 'child') {
assert.strictEqual(a.used, 0);
{
- const dh1 = createDiffieHellman(common.hasFipsCrypto ? 1024 : 256);
+ const dh1 = createDiffieHellman(common.hasFipsCrypto ? 1024 : 512);
const p1 = dh1.getPrime('buffer');
const dh2 = createDiffieHellman(p1, 'buffer');
const key1 = dh1.generateKeys();