aboutsummaryrefslogtreecommitdiff
path: root/test/parallel/test-crypto-random.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-crypto-random.js')
-rw-r--r--test/parallel/test-crypto-random.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/parallel/test-crypto-random.js b/test/parallel/test-crypto-random.js
index 668607b439..1d40c8b181 100644
--- a/test/parallel/test-crypto-random.js
+++ b/test/parallel/test-crypto-random.js
@@ -29,6 +29,7 @@ if (!common.hasCrypto)
const assert = require('assert');
const crypto = require('crypto');
const { kMaxLength } = require('buffer');
+const { inspect } = require('util');
const kMaxUint32 = Math.pow(2, 32) - 1;
const kMaxPossibleLength = Math.min(kMaxLength, kMaxUint32);
@@ -292,7 +293,7 @@ assert.throws(
{
code: 'ERR_INVALID_CALLBACK',
type: TypeError,
- message: 'Callback must be a function',
+ message: `Callback must be a function. Received ${inspect(i)}`
});
});
@@ -302,7 +303,7 @@ assert.throws(
{
code: 'ERR_INVALID_CALLBACK',
type: TypeError,
- message: 'Callback must be a function',
+ message: `Callback must be a function. Received ${inspect(i)}`
}
);
});