Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[JENKINS-21456] Stop using some deprecated methods
  • Loading branch information
kinow committed Aug 26, 2016
1 parent 1f148f4 commit 36a8d61
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions src/test/java/org/tap4j/plugin/TapPublisherTest.java
Expand Up @@ -69,6 +69,7 @@ public void setUp() throws Exception {
true,
true,
false,
false,
false
);
archiver2 = new TapPublisher(
Expand All @@ -83,6 +84,7 @@ public void setUp() throws Exception {
true,
true,
false,
false,
false
);
project.getPublishersList().add(archiver1);
Expand Down
Expand Up @@ -166,7 +166,8 @@ public boolean perform(AbstractBuild<?, ?> build, Launcher arg1,
false, // verbose
true, // showOnlyFailures
false, // stripSingleParents
true); // flattenTapResult
true, // flattenTapResult
false); //skipIfBuildNotOk

project.getPublishersList().add(publisher);
project.save();
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/org/tap4j/plugin/util/TestUtil.java
Expand Up @@ -23,7 +23,7 @@
*/
package org.tap4j.plugin.util;

import static junit.framework.Assert.assertEquals;
import static org.junit.Assert.assertEquals;

import org.junit.Test;

Expand Down

0 comments on commit 36a8d61

Please sign in to comment.