diff --git a/test/simple/test-net-write-slow.js b/test/simple/test-net-write-slow.js index 1297193ef9..468c311c5c 100644 --- a/test/simple/test-net-write-slow.js +++ b/test/simple/test-net-write-slow.js @@ -32,7 +32,7 @@ buf.fill(0x61); // 'a' var server = net.createServer(function(socket) { socket.setNoDelay(); - socket.setTimeout(200); + socket.setTimeout(1000); socket.on('timeout', function() { assert.fail('flushed: ' + flushed + ', received: ' + received + '/' + SIZE * N);