diff --git a/benchmark_results/curr.json b/benchmark_results/curr.json index b9ef30cf..0e03da50 100644 --- a/benchmark_results/curr.json +++ b/benchmark_results/curr.json @@ -1,8 +1,8 @@ { "benchInfo": { - "executionTime": "18 m", + "executionTime": "138 m", "parametrization": { - "ack": "3", + "ack": "1", "read-in-ram": true }, "otherInfo": "kafka, v2.3" @@ -10,7 +10,7 @@ "results": [ { "unit": "ms", - "value": 700, + "value": 701, "name": "latency" }, { diff --git a/dist/index.js b/dist/index.js index aab4b49b..edb110d1 100644 --- a/dist/index.js +++ b/dist/index.js @@ -9878,8 +9878,10 @@ module.exports.createCommentBodyForComparisonWithPrevBench = function ( lines.push("Watch out! You're comparing benchmarks with different names!") } // Call the function to generate bench_data text - const benchDataText = - module.exports.createBenchDataTextForCompWithPrev(currentBenchmark) + const benchDataText = module.exports.createBenchDataTextForCompWithPrev( + currentBenchmark, + previousBenchmark + ) // Append bench_data text to the lines array lines.push(benchDataText) diff --git a/src/comment.js b/src/comment.js index c40c1463..5769b715 100644 --- a/src/comment.js +++ b/src/comment.js @@ -59,8 +59,10 @@ module.exports.createCommentBodyForComparisonWithPrevBench = function ( lines.push("Watch out! You're comparing benchmarks with different names!") } // Call the function to generate bench_data text - const benchDataText = - module.exports.createBenchDataTextForCompWithPrev(currentBenchmark) + const benchDataText = module.exports.createBenchDataTextForCompWithPrev( + currentBenchmark, + previousBenchmark + ) // Append bench_data text to the lines array lines.push(benchDataText)