Skip to content

Commit

Permalink
[FIXED JENKINS-15419] Using a different URL and display name for the
Browse files Browse the repository at this point in the history
TAP Test Result action.
  • Loading branch information
kinow committed Oct 12, 2012
1 parent 3eff203 commit 5b7a894
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/main/java/org/tap4j/plugin/TapTestResultAction.java
Expand Up @@ -119,5 +119,22 @@ public Object getTarget() {
public TestResult getResult() {
return new TapStreamResult(owner, tapResult);
}

/* (non-Javadoc)
* @see hudson.tasks.test.AbstractTestResultAction#getUrlName()
*/
@Override
@Exported(visibility = 2)
public String getUrlName() {
return "tapTestReport";
}

/* (non-Javadoc)
* @see hudson.tasks.test.AbstractTestResultAction#getDisplayName()
*/
@Override
public String getDisplayName() {
return "TAP Test Result";
}

}

0 comments on commit 5b7a894

Please sign in to comment.