Skip to content

Commit

Permalink
Fix wording in the comment, avoiding the word "flaky" twice (#33)
Browse files Browse the repository at this point in the history
Signed-off-by: Alexander Schwartz <[email protected]>
  • Loading branch information
ahus1 committed Jan 5, 2024
1 parent c13ed33 commit f3705d1
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/org/keycloak/gh/bot/ReportFlakyTests.java
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ public String getPullRequestReviewBody(List<FlakyTest> flakyTests, URL repositor
StringBuilder body = new StringBuilder();

body.append("## Unreported flaky test detected\n");
body.append("If the below flaky tests below are affected by the changes, please review and update the changes accordingly. Otherwise, a maintainer should report the flaky tests prior to merging the PR.\n\n");
body.append("If the flaky tests below are affected by the changes, please review and update the changes accordingly. Otherwise, a maintainer should report the flaky tests prior to merging the PR.\n\n");

for (FlakyTest flakyTest : flakyTests) {
body.append("### ");
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## Unreported flaky test detected
If the below flaky tests below are affected by the changes, please review and update the changes accordingly. Otherwise, a maintainer should report the flaky tests prior to merging the PR.
If the flaky tests below are affected by the changes, please review and update the changes accordingly. Otherwise, a maintainer should report the flaky tests prior to merging the PR.

### my.package.MyClass#myTest

Expand Down

0 comments on commit f3705d1

Please sign in to comment.