Skip to content

Commit bae2ddb

Browse files
Fixed formatting
1 parent 483e314 commit bae2ddb

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/e2eTest/java/io/micrometer/release/train/TrainGithubActionsE2eTests.java

+4-2
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,8 @@ void should_verify_current_milestone(String version) throws JsonProcessingExcept
8484
List<Issue> issues = githubClient.getIssuesForMilestone(milestone.number());
8585
assertThat(issues).extracting(Issue::state).containsOnly("closed");
8686
assertThat(issues).extracting(Issue::title)
87-
.matches(strings -> strings.stream().noneMatch(s -> s.contains("Open issue")), "Not a single issue should contain 'Open issue' in its title")
87+
.matches(strings -> strings.stream().noneMatch(s -> s.contains("Open issue")),
88+
"Not a single issue should contain 'Open issue' in its title")
8889
.contains("Closed issue in generic " + generic, "Closed bug in concrete " + version,
8990
"Closed bug in generic " + generic, "Closed enhancement in generic " + generic);
9091
}
@@ -103,7 +104,8 @@ void should_verify_next_milestone(String next, String previous) throws JsonProce
103104
List<Issue> issues = githubClient.getIssuesForMilestone(milestone.number());
104105
assertThat(issues).extracting(Issue::state).containsOnly("open");
105106
assertThat(issues).extracting(Issue::title)
106-
.matches(strings -> strings.stream().noneMatch(s -> s.contains("in generic")), "Not a single issue should contain 'in generic' in its title")
107+
.matches(strings -> strings.stream().noneMatch(s -> s.contains("in generic")),
108+
"Not a single issue should contain 'in generic' in its title")
107109
.contains("Open issue in concrete " + previous);
108110
}
109111

0 commit comments

Comments
 (0)