Browse Source

test: fix flaky test-net-socket-timeout

Fixes: https://github.com/nodejs/node/issues/5892
PR-URL: https://github.com/nodejs/node/pull/5902
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: James M Snell <jasnell@gmail.com>
v4.x
Brian White 9 years ago
committed by Myles Borins
parent
commit
8462d8f465
  1. 2
      test/parallel/test-net-socket-timeout.js

2
test/parallel/test-net-socket-timeout.js

@ -41,7 +41,7 @@ server.listen(common.PORT, function() {
});
var timer = setTimeout(function() {
process.exit(1);
}, 200);
}, common.platformTimeout(200));
});
process.on('exit', function() {

Loading…
Cancel
Save