diff --git a/content/doc/developer/testing/index.adoc b/content/doc/developer/testing/index.adoc index 710d1bc2081c..7dbd13ac4a22 100644 --- a/content/doc/developer/testing/index.adoc +++ b/content/doc/developer/testing/index.adoc @@ -270,7 +270,7 @@ public class MyPluginTest { @Test public void testOnAllSystems() throws Exception { FreeStyleProject project = j.createFreeStyleProject(); - if(Functions.isWindows()) { + if (Functions.isWindows()) { project.getBuildersList().add(new BatchFile("echo ahoy > log.log")); } else { project.getBuildersList().add(new Shell("echo ahoy > log.log"));