Thomas Vachuska

Fixed StepProcessorTest for running on Ubuntu.

Change-Id: If35789d5ca14b06ae808bb73b833ec0212e5dac6
......@@ -40,7 +40,7 @@ public class StepProcessorTest {
@BeforeClass
public static void setUpClass() {
StepProcessor.launcher = "echo";
checkState(DIR.mkdirs(), "Unable to create directory");
checkState(DIR.exists() || DIR.mkdirs(), "Unable to create directory");
}
@AfterClass
......