Skip to content

Commit

Permalink
test: increase timeout for test-tls-fast-writing
Browse files Browse the repository at this point in the history
Increase timeout for test from 500ms to 1000ms so busy slow machines
don't produce false positives.

Fixes: #4964
PR-URL: #5466
Reviewed-By: Alexis Campailla <orangemocha@nodejs.org>
  • Loading branch information
Trott authored and Fishrock123 committed Mar 2, 2016
1 parent 81348e8 commit 12ae6ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parallel/test-tls-fast-writing.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ var gotDrain = false;
setTimeout(function() {
console.log('not ok - timed out');
process.exit(1);
}, common.platformTimeout(500));
}, common.platformTimeout(1000));

function onconnection(conn) {
conn.on('data', function(c) {
Expand Down

0 comments on commit 12ae6ab

Please sign in to comment.