Fix test for daylight savings glitch
This commit is contained in:
parent
3654a620fb
commit
5b6f149bf8
|
|
@ -19,6 +19,7 @@ pom.xml
|
|||
/build
|
||||
buildSrc/build
|
||||
/spring-*/build
|
||||
target/
|
||||
|
||||
# Eclipse artifacts, including WTP generated manifests
|
||||
.classpath
|
||||
|
|
|
|||
|
|
@ -422,8 +422,8 @@ public class CronTriggerTests {
|
|||
|
||||
@Test
|
||||
public void testSpecificHourSecond() throws Exception {
|
||||
CronTrigger trigger = new CronTrigger("55 * 2 * * *", timeZone);
|
||||
calendar.set(Calendar.HOUR_OF_DAY, 1);
|
||||
CronTrigger trigger = new CronTrigger("55 * 10 * * *", timeZone);
|
||||
calendar.set(Calendar.HOUR_OF_DAY, 9);
|
||||
calendar.set(Calendar.SECOND, 54);
|
||||
Date date = calendar.getTime();
|
||||
TriggerContext context1 = getTriggerContext(date);
|
||||
|
|
|
|||
Loading…
Reference in New Issue