Skip to content

Commit

Permalink
Merge pull request #6 from daldinger/master
Browse files Browse the repository at this point in the history
[FIXED JENKINS-17398] Mark the build as unstable when there are test failures.
  • Loading branch information
orrc committed Jul 31, 2013
2 parents 006aaf6 + a5e784b commit dbce1c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/hudson/plugins/fitnesse/FitnesseResults.java
Expand Up @@ -171,7 +171,7 @@ public boolean isSkippedOverall() {

@Override
public Result getBuildResult() {
if (getFailCount() > 0) return Result.FAILURE;
if (getFailCount() > 0) return Result.UNSTABLE;
return null;
}

Expand Down

0 comments on commit dbce1c7

Please sign in to comment.