Skip to content

Commit

Permalink
[JENKINS-70113] Fix log message for test status (#100)
Browse files Browse the repository at this point in the history
  • Loading branch information
benipeled authored Dec 15, 2022
1 parent 68dc05a commit 55accfc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ public void perform(final Run<?, ?> build, FilePath workspace, Launcher launcher

Result procResult = xUnitProcessor.processResultThreshold(result.getTestResultSummary(), build);
xUnitProcessor.publishChecks(build, result, procResult, listener, null);
logger.info("Setting the build status to " + result);
logger.info("Setting the build status to " + procResult);
build.setResult(procResult);

} catch(AbortException e) {
Expand Down

0 comments on commit 55accfc

Please sign in to comment.