test: remove error message

PR-URL: https://github.com/nodejs/node/pull/15983
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: James M Snell <jasnell@gmail.com>
pull/16025/merge
Jack Wang 2017-10-06 10:54:58 -07:00 committed by Ruben Bridgewater
parent b07aa9264e
commit dc086834b1
No known key found for this signature in database
GPG Key ID: F07496B3EB3C1762
1 changed files with 2 additions and 2 deletions

View File

@ -26,10 +26,10 @@ const common = require('../common');
const assert = require('assert');
const net = require('net');
console.log('Run this test with --expose-gc');
assert.strictEqual(
typeof global.gc,
'function',
'Run this test with --expose-gc'
'function'
);
net.createServer(function() {}).listen(common.PORT);