Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
nucliweb authored Dec 9, 2024
1 parent d2e2412 commit d26cae0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/bindReporter-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ describe('bindReporter', () => {
metric.value = 0.15;
reporter(true);
// To avoid 0.049999999 values
let fixDelta = Number(report[1].delta.toFixed(2));
let fixDelta = Number(reports[1].delta.toFixed(2));
assert.equal(fixDelta, 0.05);
});

Expand Down

0 comments on commit d26cae0

Please sign in to comment.