RESOLVED - issue BATCH-380: Step Scope problem in TaskletStep

http://jira.springframework.org/browse/BATCH-380

Forgot to check core tests.
This commit is contained in:
dsyer
2008-02-26 16:31:13 +00:00
parent 71c61496be
commit 29ea3e182f

View File

@@ -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());
}