diff --git a/spring-batch-core/src/test/java/org/springframework/batch/core/domain/JobExecutionTests.java b/spring-batch-core/src/test/java/org/springframework/batch/core/domain/JobExecutionTests.java index 520cd650c..d8b85ecc3 100644 --- a/spring-batch-core/src/test/java/org/springframework/batch/core/domain/JobExecutionTests.java +++ b/spring-batch-core/src/test/java/org/springframework/batch/core/domain/JobExecutionTests.java @@ -72,7 +72,7 @@ public class JobExecutionTests extends TestCase { * {@link org.springframework.batch.core.domain.JobExecution#getStartTime()}. */ public void testGetStartTime() { - assertNotNull(execution.getStartTime()); + assertNull(execution.getStartTime()); execution.setStartTime(new Date(0L)); assertEquals(0L, execution.getStartTime().getTime()); }