Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

This tests are failing when running on the PCT #149

Merged
merged 1 commit into from
Jun 4, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ private void copyViaHttp(Folder f, JenkinsRule.WebClient wc, String fromName, St
@Issue("JENKINS-58282")
@Test public void shouldHaveHealthMetricConfiguredGloballyOnCreation() throws Exception {
assertThat("by default, global configuration should have all folder health metrics",
AbstractFolderConfiguration.get().getHealthMetrics(), hasSize(FolderHealthMetricDescriptor.all().size()));
AbstractFolderConfiguration.get().getHealthMetrics(), hasSize((int) FolderHealthMetricDescriptor.all().stream().filter(d -> d.createDefault() != null).count()));

Folder folder = r.jenkins.createProject(Folder.class, "myFolder");
DescribableList<FolderHealthMetric, FolderHealthMetricDescriptor> healthMetrics = folder.getHealthMetrics();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public void testInitialization() {
@Test
public void shouldBeAbleToRemoveHealthMetricConfiguredGlobally() throws Exception {
assertThat("by default, global configuration should have all folder health metrics",
AbstractFolderConfiguration.get().getHealthMetrics(), hasSize(FolderHealthMetricDescriptor.all().size()));
AbstractFolderConfiguration.get().getHealthMetrics(), hasSize((int) FolderHealthMetricDescriptor.all().stream().filter(d -> d.createDefault() != null).count()));

HtmlForm cfg = r.createWebClient().goTo("configure").getFormByName("config");
for (HtmlElement element : cfg.getElementsByAttribute("div", "name", "healthMetrics")) {
Expand Down