Skip to content

Commit

Permalink
Fixed: JENKINS-34822 - TestNG plugin has incorrect default threshold …
Browse files Browse the repository at this point in the history
…values
  • Loading branch information
nullin committed May 15, 2016
1 parent be0aeff commit ed80688
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions README
Expand Up @@ -16,6 +16,9 @@ graph and all details about which tests that failed are also presented.
Release Notes
-------

### 1.13
* Fixed: JENKINS-34822 - TestNG plugin has incorrect default threshold values

### 1.12
* Fixed: JENKINS-34711 - NullPointerException after Update to 1.11 of plugin

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/hudson/plugins/testng/Publisher.java
Expand Up @@ -215,7 +215,7 @@ protected Object readResolve() {
unstableSkips = unstableOnSkippedTests ? 0 : 100;
}
if (unstableFails == null) {
unstableFails = 100;
unstableFails = 0;
}
if (failedFails == null) {
failedFails = 100;
Expand Down

0 comments on commit ed80688

Please sign in to comment.