Skip to content

Commit 4152428

Browse files
Trottcodebytere
authored andcommitted
test,benchmark: fix test-benchmark-zlib
PR-URL: #31538 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 43186e0 commit 4152428

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

benchmark/zlib/deflate.js

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ const bench = common.createBenchmark(main, {
99
});
1010

1111
function main({ n, method, inputLen }) {
12+
// Default method value for testing.
13+
method = method || 'deflate';
1214
const chunk = Buffer.alloc(inputLen, 'a');
1315

1416
var i = 0;

benchmark/zlib/inflate.js

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ const bench = common.createBenchmark(main, {
99
});
1010

1111
function main({ n, method, inputLen }) {
12+
// Default method value for tests.
13+
method = method || 'inflate';
1214
const chunk = zlib.deflateSync(Buffer.alloc(inputLen, 'a'));
1315

1416
let i = 0;

test/benchmark/test-benchmark-zlib.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ runBenchmark('zlib',
1010
'chunkLen=1024',
1111
'duration=0.001',
1212
'inputLen=1024',
13-
'method=deflate',
13+
'method=',
1414
'n=1',
1515
'options=true',
1616
'type=Deflate',

0 commit comments

Comments
 (0)