Skip to content

Commit

Permalink
test: increase limit again for network space overhead test
Browse files Browse the repository at this point in the history
On certain platforms, updating V8 to 7.9 made the numbers a bit higher
than the current limit.
  • Loading branch information
targos authored and nodejs-ci committed Nov 6, 2019
1 parent c70c4e8 commit 3cfda19
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,5 @@ process.on('exit', () => {
const bytesPerChunk =
(process.memoryUsage().rss - baseRSS) / receivedChunks.length;
// We should always have less than one page (usually ~ 4 kB) per chunk.
assert(bytesPerChunk < 600, `measured ${bytesPerChunk} bytes per chunk`);
assert(bytesPerChunk < 650, `measured ${bytesPerChunk} bytes per chunk`);
});

0 comments on commit 3cfda19

Please sign in to comment.