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 c8aa77a commit 5463571Copy full SHA for 5463571
src/test/java/org/jenkinsci/plugins/workflow/cps/CpsFlowDefinitionTest.java
@@ -15,7 +15,8 @@ public class CpsFlowDefinitionTest extends AbstractCpsFlowTest {
15
@Test
16
public void simplestPossibleTest() throws Exception {
17
CpsFlowDefinition flow = new CpsFlowDefinition(
18
- "def sqrt(int x) { return Math.sqrt(x); }\nfor (int i=0; i<10; i++)\nsqrt(i);",
+ "def sqrt(int x) { return Math.sqrt(x); }\n" +
19
+ "for (int i=0; i<10; i++) { sqrt(i); }",
20
false);
21
22
createExecution(flow);
0 commit comments