test: fix flaky test-net-write-slow
Increase socket timeout so that there is enough time to reliably run the test on FreeBSD. Fixes: https://github.com/nodejs/node/issues/7516 PR-URL: https://github.com/nodejs/node/pull/7555 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com>
This commit is contained in:
parent
4c774e121b
commit
9d654a387a
@ -11,7 +11,7 @@ var buf = Buffer.alloc(SIZE, 'a');
|
||||
|
||||
var server = net.createServer(function(socket) {
|
||||
socket.setNoDelay();
|
||||
socket.setTimeout(1000);
|
||||
socket.setTimeout(9999);
|
||||
socket.on('timeout', function() {
|
||||
assert.fail(null, null, 'flushed: ' + flushed +
|
||||
', received: ' + received + '/' + SIZE * N);
|
||||
|
Loading…
x
Reference in New Issue
Block a user