Closed ModisR closed 2 years ago
On lines 1519-1525, we see the following snippet:
val endOfDayGen: Gen[Calendar] = calendar.map(c => adjust(c) { c => c.set(HOUR_OF_DAY, 23) c.set(MINUTE, 59) c.set(SECOND, 59) c.set(MILLISECOND, 59) })
The milliseconds are set to 59 when they should presumably be 999.
On lines 1519-1525, we see the following snippet:
The milliseconds are set to 59 when they should presumably be 999.