We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
The text was updated successfully, but these errors were encountered:
9f7aa21
Merge pull request #924 from akonior/bugfix/calandar-generator
31f911a
fix wrong millisecond value (fixes #913)
No branches or pull requests
On lines 1519-1525, we see the following snippet:
The milliseconds are set to 59 when they should presumably be 999.
The text was updated successfully, but these errors were encountered: