Skip to content

Commit

Permalink
remove parameter disableCopyFilesToBuildDir
Browse files Browse the repository at this point in the history
remove parameter disableCopyFilesToBuildDir and implicate its value.
  • Loading branch information
pipapo-sl committed Jan 19, 2021
1 parent 610046f commit eb08acb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public class RobotPublisherSystemTest {
@Test
public void testRoundTripConfig() throws Exception {
FreeStyleProject p = j.jenkins.createProject(FreeStyleProject.class, "testRoundTripConfig");
RobotPublisher before = new RobotPublisher(null, "a", "b", false, false, "c", "d", 11, 27, true, "dir1/*.jpg, dir2/*.png",
RobotPublisher before = new RobotPublisher(null, "a", "b", false, "c", "d", 11, 27, true, "dir1/*.jpg, dir2/*.png",
false, "");
p.getPublishersList().add(before);
j.configRoundtrip(p);
Expand All @@ -69,7 +69,7 @@ public void testRoundTripConfig() throws Exception {
@Test
public void testConfigView() throws Exception {
FreeStyleProject p = j.jenkins.createProject(FreeStyleProject.class, "testConfigView");
RobotPublisher before = new RobotPublisher(null, "a", "b", false, false, "c", "d", 11, 27, true, "dir1/*.jpg, dir2/*.png",
RobotPublisher before = new RobotPublisher(null, "a", "b", false, "c", "d", 11, 27, true, "dir1/*.jpg, dir2/*.png",
false, "");
p.getPublishersList().add(before);
HtmlPage page = j.createWebClient().getPage(p, "configure");
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/hudson/plugins/robot/RobotPublisherTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public void setUp() throws Exception {
}

private RobotPublisher getRobotPublisher(double passThreshold, double unstableThreshold) {
return new RobotPublisher(null, "", "", false, false, "", "", passThreshold, unstableThreshold, onlyCritical, "", false, "");
return new RobotPublisher(null, "", "", false, "", "", passThreshold, unstableThreshold, onlyCritical, "", false, "");
}

@Test
Expand Down

0 comments on commit eb08acb

Please sign in to comment.