Skip to content

Commit

Permalink
fix bad func name
Browse files Browse the repository at this point in the history
  • Loading branch information
DawidNiezgodka committed Jan 22, 2024
1 parent 17ea6c6 commit 85fb1fa
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/bench_data.js
Original file line number Diff line number Diff line change
Expand Up @@ -171,9 +171,9 @@ module.exports.getNLatestBenchmarks = function (
const nthLatest = sortedBenchmarkData.slice(0, n).map(data => {
return convertBenchDataToCompleteBenchmarkInstance(data, benchmarkGroupName);
});
return nthLatest;
//core.debug(`nthLatest ${JSON.stringify(nthLatest)}`)
core.debug('--- end getNLatestBenchmarks ---')
return nthLatest;

} catch (error) {
console.error('An error occurred:', error);
return null;
Expand Down
2 changes: 1 addition & 1 deletion src/comment.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ module.exports.createComment = function (
commentBody = module.exports.createBodyForComparisonWithJumpDeltas(evaluationResult, completeConfig);
break;
case 'trend_detection_moving_ave':
commentBody = module.exports.createBodyForComparisonWithTrendDetMovAve(evaluationResult, completeConfig);
commentBody = module.exports.createBodyForComparisonWithTrendDetMovAverage(evaluationResult, completeConfig);
break;
case 'trend_detection_deltas':
commentBody = module.exports.createBodyForComparisonWithTrendDetDeltas(evaluationResult, completeConfig);
Expand Down

0 comments on commit 85fb1fa

Please sign in to comment.