Fixed typos in unit testing source code to make it compile and pass the test.

This commit is contained in:
taeksoon.jang
2017-07-23 17:58:06 +09:00
committed by Michael Minella
parent 9c191090c7
commit 110b95ee1e

View File

@@ -90,10 +90,10 @@ public class SkipSampleFunctionalTests {
i, "customer" + i);
}
JobExecution jobExecution = jobLauncherTestUtils.launchJob().getStatus();
JobExecution jobExecution = jobLauncherTestUtils.launchJob();
Assert.assertEquals("COMPLETED", jobExecution.getExitStatus());
Assert.assertEquals("COMPLETED", jobExecution.getExitStatus().getExitCode());
}
}
----