Skip to content
This repository has been archived by the owner on Dec 15, 2021. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
Some recently added tests neglected to invoke the JENKINS-30395 worka…
…round.
  • Loading branch information
jglick committed Jan 18, 2016
1 parent 764d633 commit 95e1886
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Expand Up @@ -39,7 +39,7 @@

public class ScalabilityTest {

@Rule public RestartableJenkinsRule story = new RestartableJenkinsRule();
@Rule public RestartableJenkinsRule story = JenkinsRuleExt.workAroundJenkins30395Restartable();

@Issue("JENKINS-30055")
@Test public void manySteps() {
Expand Down
Expand Up @@ -29,6 +29,7 @@
import java.util.List;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import org.jenkinsci.plugins.workflow.JenkinsRuleExt;
import org.jenkinsci.plugins.workflow.actions.LogAction;
import org.jenkinsci.plugins.workflow.cps.CpsFlowDefinition;
import org.jenkinsci.plugins.workflow.graph.FlowGraphWalker;
Expand All @@ -45,7 +46,7 @@
public class EchoStepTest {

@ClassRule public static BuildWatcher buildWatcher = new BuildWatcher();
@Rule public JenkinsRule r = new JenkinsRule();
@Rule public JenkinsRule r = JenkinsRuleExt.workAroundJenkins30395();

@Test public void smokes() throws Exception {
WorkflowJob p = r.jenkins.createProject(WorkflowJob.class, "p");
Expand Down

0 comments on commit 95e1886

Please sign in to comment.