summaryrefslogtreecommitdiff
path: root/benchmark/http/simple.js
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/http/simple.js')
-rw-r--r--benchmark/http/simple.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/benchmark/http/simple.js b/benchmark/http/simple.js
index bbc59a341d..6d1851c45e 100644
--- a/benchmark/http/simple.js
+++ b/benchmark/http/simple.js
@@ -7,15 +7,14 @@ const bench = common.createBenchmark(main, {
len: [4, 1024, 102400],
chunks: [1, 4],
c: [50, 500],
- chunkedEnc: [1, 0],
- res: ['normal', 'setHeader', 'setHeaderWH']
+ chunkedEnc: [1, 0]
});
function main({ type, len, chunks, c, chunkedEnc, res }) {
var server = require('../fixtures/simple-http-server.js')
.listen(common.PORT)
.on('listening', function() {
- const path = `/${type}/${len}/${chunks}/${res}/${chunkedEnc}`;
+ const path = `/${type}/${len}/${chunks}/normal/${chunkedEnc}`;
bench.http({
path: path,