Skip to content

Commit

Permalink
🐛 Fix comment text
Browse files Browse the repository at this point in the history
  • Loading branch information
tiulpin committed Dec 5, 2023
1 parent 8815261 commit 44987a4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scan/__tests__/main.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ function failedCoverageFixture(): string {
@@ Code coverage @@
- 0% total lines covered
100 lines analyzed, 0 lines covered
! 0 fresh lines covered
! 0% fresh lines covered
100 lines analyzed, 0 lines covered
# Calculated according to the filters of your coverage tool
\`\`\``
Expand Down
2 changes: 1 addition & 1 deletion scan/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -85112,7 +85112,7 @@ ${c.totalLines} lines analyzed, ${c.totalCoveredLines} lines covered`;
}
if (c.freshLines !== 0) {
stats += `
! ${c.freshCoverage} fresh lines covered
! ${c.freshCoverage}% fresh lines covered
${c.freshLines} lines analyzed, ${c.freshCoveredLines} lines covered`;
}
return wrapToDiffBlock([
Expand Down
2 changes: 1 addition & 1 deletion scan/src/output.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ ${c.totalLines} lines analyzed, ${c.totalCoveredLines} lines covered`

if (c.freshLines !== 0) {
stats += `
! ${c.freshCoverage} fresh lines covered
! ${c.freshCoverage}% fresh lines covered
${c.freshLines} lines analyzed, ${c.freshCoveredLines} lines covered`
}

Expand Down

0 comments on commit 44987a4

Please sign in to comment.