Skip to content

Commit

Permalink
Fix naming.
Browse files Browse the repository at this point in the history
  • Loading branch information
uhafner committed Mar 15, 2024
1 parent 79e03c0 commit b67c9b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/edu/hm/hafner/grading/AnalysisMarkdown.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ protected void createSpecificDetails(final AggregatedScore aggregation, final Li
.addNewline()
.addText(getPercentageImage(score))
.addNewline()
.addText(formatColumns("Name", "Files", "Errors", "High", "Normal", "Low", "Total"))
.addText(formatColumns("Name", "Reports", "Errors", "High", "Normal", "Low", "Total"))
.addTextIf(formatColumns("Impact"), score.hasMaxScore())
.addNewline()
.addText(formatColumns(":-:", ":-:", ":-:", ":-:", ":-:", ":-:", ":-:"))
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/edu/hm/hafner/grading/TestMarkdown.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ protected void createSpecificDetails(final AggregatedScore aggregation,
.addNewline()
.addText(getPercentageImage(score))
.addNewline()
.addText(formatColumns("Name", "Files", "Passed", "Skipped", "Failed", "Total"))
.addText(formatColumns("Name", "Reports", "Passed", "Skipped", "Failed", "Total"))
.addTextIf(formatColumns("Impact"), score.hasMaxScore())
.addNewline()
.addText(formatColumns(":-:", ":-:", ":-:", ":-:", ":-:", ":-:"))
Expand Down

0 comments on commit b67c9b7

Please sign in to comment.