Skip to content

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.

Originally-Committed-As: 95e1886f06bb74174087e8cc42d1a56be2fef2c7
  • Loading branch information
jglick committed Jan 18, 2016
1 parent 5f87f11 commit bf779e0
Showing 1 changed file with 2 additions and 1 deletion.
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 bf779e0

Please sign in to comment.