test: loosen timeout in https-no-reader

fix #5925
This commit is contained in:
Fedor Indutny 2013-07-29 13:33:01 +04:00
parent 8f571b52a7
commit 38176d3a1a

View File

@ -62,7 +62,7 @@ server.listen(common.PORT, function() {
// (i.e. should not leak)
assert(res._readableState.length < 100 * 1024);
process.exit(0);
}, 5000);
}, 2000);
});
req.end();
});