We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f129830 commit 36224c1Copy full SHA for 36224c1
src/test/java/org/jenkinsci/plugins/workflow/support/steps/build/RunWrapperTest.java
@@ -292,7 +292,7 @@ public void upstreamBuilds() throws Throwable {
292
public void externalizableId() throws Throwable {
293
sessions.then(j -> {
294
WorkflowJob first = j.createProject(WorkflowJob.class, "first-job");
295
- first.setDefinition(new CpsFlowDefinition("echo currentBuild.getExternalizableId()'\n", true));
+ first.setDefinition(new CpsFlowDefinition("echo currentBuild.getExternalizableId()\n", true));
296
WorkflowRun firstRun = j.buildAndAssertSuccess(first);
297
j.assertLogContains(firstRun.getExternalizableId(), firstRun);
298
});
0 commit comments