Skip to content

Commit 3cfda19

Browse files
targosnodejs-ci
authored andcommitted
test: increase limit again for network space overhead test
On certain platforms, updating V8 to 7.9 made the numbers a bit higher than the current limit.
1 parent c70c4e8 commit 3cfda19

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/sequential/test-net-bytes-per-incoming-chunk-overhead.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,5 @@ process.on('exit', () => {
3737
const bytesPerChunk =
3838
(process.memoryUsage().rss - baseRSS) / receivedChunks.length;
3939
// We should always have less than one page (usually ~ 4 kB) per chunk.
40-
assert(bytesPerChunk < 600, `measured ${bytesPerChunk} bytes per chunk`);
40+
assert(bytesPerChunk < 650, `measured ${bytesPerChunk} bytes per chunk`);
4141
});

0 commit comments

Comments
 (0)