Skip to content

Commit

Permalink
test: fix flaky test-net-socket-timeout
Browse files Browse the repository at this point in the history
Fixes: #5892
PR-URL: #5902
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: James M Snell <jasnell@gmail.com>
  • Loading branch information
mscdex authored and Myles Borins committed Apr 8, 2016
1 parent 6e2bfbe commit 8462d8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parallel/test-net-socket-timeout.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ server.listen(common.PORT, function() {
});
var timer = setTimeout(function() {
process.exit(1);
}, 200);
}, common.platformTimeout(200));
});

process.on('exit', function() {
Expand Down

0 comments on commit 8462d8f

Please sign in to comment.