From 29ea3e182f42c56f885c71d760660ad7274e48d0 Mon Sep 17 00:00:00 2001 From: dsyer Date: Tue, 26 Feb 2008 16:31:13 +0000 Subject: [PATCH] RESOLVED - issue BATCH-380: Step Scope problem in TaskletStep http://jira.springframework.org/browse/BATCH-380 Forgot to check core tests. --- .../springframework/batch/core/domain/JobExecutionTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()); }