Skip to content

Commit 483e314

Browse files
Fixes tests
1 parent 6396a99 commit 483e314

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/e2eTest/java/io/micrometer/release/single/SingleProjectGithubActionsE2eTests.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ void should_verify_next_milestone() throws JsonProcessingException {
7373
List<Issue> issues = githubClient.getIssuesForMilestone(milestone.number());
7474
assertThat(issues).filteredOn(s -> "Open issue in concrete 0.1.1".equalsIgnoreCase(s.title()))
7575
.extracting(Issue::state)
76-
.containsOnly("closed");
76+
.containsOnly("open");
7777
assertThat(issues).extracting(Issue::title)
7878
.contains("Open issue in concrete 0.1.1")
7979
.doesNotContain(issueTitles);

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -84,8 +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-
.doesNotMatch(strings -> strings.stream().noneMatch(s -> s.contains("Open issue")))
88-
.containsOnly("Closed issue in generic " + generic, "Closed bug in concrete " + version,
87+
.matches(strings -> strings.stream().noneMatch(s -> s.contains("Open issue")), "Not a single issue should contain 'Open issue' in its title")
88+
.contains("Closed issue in generic " + generic, "Closed bug in concrete " + version,
8989
"Closed bug in generic " + generic, "Closed enhancement in generic " + generic);
9090
}
9191

@@ -103,7 +103,7 @@ void should_verify_next_milestone(String next, String previous) throws JsonProce
103103
List<Issue> issues = githubClient.getIssuesForMilestone(milestone.number());
104104
assertThat(issues).extracting(Issue::state).containsOnly("open");
105105
assertThat(issues).extracting(Issue::title)
106-
.doesNotMatch(strings -> strings.stream().noneMatch(s -> s.contains("in generic")))
106+
.matches(strings -> strings.stream().noneMatch(s -> s.contains("in generic")), "Not a single issue should contain 'in generic' in its title")
107107
.contains("Open issue in concrete " + previous);
108108
}
109109

0 commit comments

Comments
 (0)