Skip to content

Commit

Permalink
[JENKINS-35266] Fix reset of Hide prjects with no tests in the test p…
Browse files Browse the repository at this point in the history
…ortlet
  • Loading branch information
evandy0 committed Jun 2, 2016
1 parent 5ba8abe commit be9f6e0
Showing 1 changed file with 4 additions and 0 deletions.
Expand Up @@ -39,6 +39,10 @@ public TestStatisticsPortlet(String name, final boolean hideZeroTestProjects, St
public TestResultSummary getTestResultSummary(Collection<TopLevelItem> jobs) {
return TestUtil.getTestResultSummary(jobs, hideZeroTestProjects);
}

public boolean getHideZeroTestProjects() {
return this.hideZeroTestProjects;
}

public String format(DecimalFormat df, double val) {
if (val < 1d && val > .99d) {
Expand Down

0 comments on commit be9f6e0

Please sign in to comment.