Skip to content

Commit

Permalink
Reference test to issue #117
Browse files Browse the repository at this point in the history
  • Loading branch information
jmrozanec committed Sep 1, 2016
1 parent 36e5610 commit afaed13
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,10 @@ public void testMinimumInterval() {
assertEquals(getMinimumInterval("0 0 */3 * * ?"), Duration.ofSeconds(10800));
assertEquals(getMinimumInterval("0 0 0 * * ?"), Duration.ofSeconds(86400));
}


/**
* Issue #117: Last Day of month Skipped on Quartz Expression: 0 * * ? * *
*/
@Test
public void noSpecificDayOfMonth() {
Cron cron = parser.parse("0 * * ? * *");
Expand Down

0 comments on commit afaed13

Please sign in to comment.