Browse Source

test: clarify assertion failure

PR-URL: https://github.com/nodejs/node/pull/15889
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
v9.x-staging
ryshep111 8 years ago
committed by Ruben Bridgewater
parent
commit
92d326994d
No known key found for this signature in database GPG Key ID: F07496B3EB3C1762
  1. 3
      test/pummel/test-tls-connect-memleak.js

3
test/pummel/test-tls-connect-memleak.js

@ -33,7 +33,8 @@ const fixtures = require('../common/fixtures');
assert.strictEqual(
typeof global.gc,
'function',
'Run this test with --expose-gc'
`Type of global.gc is not a function. Type: ${typeof global.gc}.` +
' Run this test with --expose-gc'
);
tls.createServer({

Loading…
Cancel
Save